Skip to content

feat: add expression array_size #1122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
error in scala case
  • Loading branch information
Groennbeck committed Feb 10, 2025
commit 938de8d895a4c77f9da3e3b766e18b989b20819b
Original file line number Diff line number Diff line change
Expand Up @@ -2333,7 +2333,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
expr.children(2))
None
}
ase Size(child, _) if child.dataType.isInstanceOf[ArrayType] =>
case Size(child, _) if child.dataType.isInstanceOf[ArrayType] =>
val srcExprProto = exprToProto(child, inputs, binding)
val arraySizeBuilder = ExprOuterClass.ArraySize
.newBuilder()
Expand Down