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
match legazy of size null
  • Loading branch information
Groennbeck committed Feb 10, 2025
commit 15ba4943f42c2ea8f2a623348d297839e3ac3ffb
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
}
case Size(child, _) if child.dataType.isInstanceOf[ArrayType] =>
case Size(child, false) if child.dataType.isInstanceOf[ArrayType] =>
val srcExprProto = exprToProto(child, inputs, binding)
val arraySizeBuilder = ExprOuterClass.ArraySize
.newBuilder()
Expand Down