We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In both the pandas and modin queries:
lineitem_filtered["l_year"] = lineitem_filtered["l_shipdate"].apply( lambda x: x.year )
should be
lineitem_filtered["l_year"] = lineitem_filtered["l_shipdate"].dt.year
The polars_queries version uses the analogous idiom. This made a pretty big difference locally.
The text was updated successfully, but these errors were encountered:
Thanks, the implementations were forked from bodo.ai .I assumed they would be optimized.. Could you make a PR? I can do rerun.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In both the pandas and modin queries:
should be
The polars_queries version uses the analogous idiom. This made a pretty big difference locally.
The text was updated successfully, but these errors were encountered: