Skip to content

Commit

Permalink
velox/functions/prestosql/types/IPPrefixType.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsaka committed Oct 1, 2024
1 parent 4503a62 commit 7b8af4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions velox/functions/prestosql/types/IPPrefixType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class IPPrefixCastOperator : public exec::CastOperator {
const TypePtr& resultType,
VectorPtr& result) const override {
context.ensureWritable(rows, resultType, result);
VELOX_UNSUPPORTED(
VELOX_NYI(
"Cast from {} to IPPrefix not yet supported", input.type()->toString());
}

Expand All @@ -52,7 +52,7 @@ class IPPrefixCastOperator : public exec::CastOperator {
const TypePtr& resultType,
VectorPtr& result) const override {
context.ensureWritable(rows, resultType, result);
VELOX_UNSUPPORTED(
VELOX_NYI(
"Cast from IPPrefix to {} not yet supported", resultType->toString());
}
};
Expand Down

0 comments on commit 7b8af4b

Please sign in to comment.