-
Notifications
You must be signed in to change notification settings - Fork 34
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
Duckdb conversion traits and simple arrow impl #2620
Conversation
CodSpeed Performance ReportMerging #2620 will not alter performanceComparing Summary
|
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.
Nice start! Couple of questions / remarks.
0c1d64f
to
d809073
Compare
# Conflicts: # Cargo.lock
} | ||
} | ||
|
||
fn from_duckdb_list(list: LogicalTypeHandle) -> DType { |
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.
Same here, could consider making this more rustic:
impl From<LogicalTypeHandle>
..
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 am not sure we can, since we I need a nullability above and I would need a dummy struct to control the from impl here
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.
Left a couple more nits but this is good to go for now I think to make further progress.
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.
wasm setup looks fine. 2 questions inline.
Added a simple converter via arrow