-
Notifications
You must be signed in to change notification settings - Fork 113
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
Set nulls correctly for all type of arrays/vectors #344
Set nulls correctly for all type of arrays/vectors #344
Conversation
* set nulls for all possible array to vectors * add more set nulls * wip * only change flat vector * Revert "only change flat vector" This reverts commit 90c9d75. * add list vector nulls
Thanks for the PR! LGTM - could you just merge with main so the CI can rerun? |
Thanks - looks like the CI now fails on the newly added test. Could you have a look when you have time? |
yeah, will do. Sorry got carried away by something else, looks like an easy fix. |
that's still something wrong with invalid cfg feature for time. Which is not introduced by this branch, I took a shot on fixing that but not really sure how the |
Thanks for looking into it - could you merge with main again? The CI should be fixed again in #375 |
Thanks! |
This sets the correct nulls for strings, struct, list, array types when copying data from arrow array to duckdb vectors.
When inserting nulls to columns with these types, the null will be correctly set instead of the default value like:
""
,{k: ""}
, etc.