-
Notifications
You must be signed in to change notification settings - Fork 839
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
Support constant array. #5701
Comments
Is https://docs.rs/arrow-array/latest/arrow_array/struct.Scalar.html perhaps what you are looking for? |
Not quite same. Here is the case, when we want to convert iceberg predicate to |
https://arrow.apache.org/docs/format/Columnar.html Seems arrow doesn't have an constant array ( But array with type "Null" is similiar to that), maybe send this to maillist is prefered? |
Cool, I will send a mail to dev list. |
Constant propogation is something I'd expect to be handled by a query optimizer, perhaps in conjunction with range analysis. FWIW Datafusion is already capable of this |
Yes, it possible to be handled by expression rewrite. |
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
A constant array would be useful for improving performance, see apache/iceberg-rust#295 (comment)
Describe the solution you'd like
Allow constructing constant array.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: