-
Notifications
You must be signed in to change notification settings - Fork 912
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
Simplify expression transformer in Parquet predicate pushdown with ast::tree
#17587
base: branch-25.02
Are you sure you want to change the base?
Simplify expression transformer in Parquet predicate pushdown with ast::tree
#17587
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
ast::tree
ast::tree
@@ -278,7 +277,6 @@ class stats_expression_converter : public ast::detail::expression_transformer { | |||
"Statistics AST supports only left table"); | |||
CUDF_EXPECTS(expr.get_column_index() < _num_columns, | |||
"Column index cannot be more than number of columns in the table"); | |||
_stats_expr = std::reference_wrapper<ast::expression const>(expr); |
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.
These don't need to be pushed to the ast::tree
since we will be filtering with the new columns in the StatsAST table.
/ok to test |
ast::tree
ast::tree
Description
This PR simplifies the StatsAST expression transformer in Parquet reader's predicate pushdown using
ast::tree
from (#17156).This PR is a follow up to @bdice's comment at #17289 (comment). Similar changes for the
BloomfilterAST
expression converter have been incorporated in the PR #17289.Related to #17164
Checklist