-
Notifications
You must be signed in to change notification settings - Fork 915
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
Ensure literals have correct dtype #15890
Ensure literals have correct dtype #15890
Conversation
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.
This LGTM, but I'll let someone else approve since I'm unfamiliar with polars code so far.
I left a couple nits/questions.
c12a5b4
to
b8bd4a3
Compare
b8bd4a3
to
3a2c14e
Compare
Ready for another look, @brandon-b-miller and @lithomas1 |
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.
one comment, else LGTM
3a2c14e
to
9bf53c3
Compare
/merge |
Minor fixup to the pylibcudf datatype interop changes was needed as well. |
Description
The polars schema tells us the dtype for any literals, but previously we were relying on pyarrow inference. Add pylibcudf to pyarrow datatype conversion utilities and use the resulting datatypes explicitly.
Checklist