-
Notifications
You must be signed in to change notification settings - Fork 454
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
[VL] Remaining issues for typed imperative aggregate #4763
Labels
enhancement
New feature or request
Comments
@liujiayi771 do you know if collect_set is not expected to work with complex types if the value is null? Example, this works with Spark, but doesn't work when Gluten is enabled:
Error:
|
@felipepessoto This is a known issue, the Velox backend does not yet support it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
collect_list
collect_set
set_agg
.Exclude UTs:
Reason: If all input values are null,
collect_list
in vanilla Spark return an empty array, butarray_agg
in Velox return null.The text was updated successfully, but these errors were encountered: