-
Notifications
You must be signed in to change notification settings - Fork 130
feat[array]: duckdb executor #5737
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
Conversation
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
| session: &VortexSession, | ||
| ) -> VortexResult<Box<dyn ColumnExporter>> { | ||
| let validity = array.validity_mask(); | ||
| // DuckDB requires that the validity of the child be a subset of the parent struct so we mask out children with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you should use get_item in that case?
| cache: &ConversionCache, | ||
| session: &VortexSession, | ||
| ) -> VortexResult<Box<dyn ColumnExporter>> { | ||
| let validity = array.validity_mask(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See this is weird.. validity_mask is deprecated since it's old "canonical", you should use Validity + execute_mask
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
No description provided.