-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Predicate pushdown through exclude_columns #25117
Comments
@kasiafi pls triage. |
If we wanted to implement predicate pushdown into table function on the engine level, we must consider that:
If we implemented a generic pushdown rule with the above limitations, sadly the To support pushdown for |
Ugh... Sounds overkill for this particular purpose. I wonder if simply rewriting exclude_columns to projection could work. |
Currently, predicates are not pushed down to table scan when we use
exclude_columns
.Of course, we can write as follows:
However, it would be great if predicates will be pushd down through
exclude_columns
even in the first case.The text was updated successfully, but these errors were encountered: