-
Notifications
You must be signed in to change notification settings - Fork 411
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
Support late materialization #5829
Comments
Given this query:
The column
It will be much faster to read the For example, this query:
Only takes:
Implementation proposal Introduce a new column type, |
ref pingcap#5829 Signed-off-by: ywqzzy <[email protected]>
Feature Request
Is your feature request related to a problem? Please describe:
For some query like
select * from t where a + b <> 0;
, we now scan all columns and then do filter, which is heavy and we can do better.Describe the feature you'd like:
Support late materialization. We can scan column(s) at first to filter out unnecessary data segment, and then just scan the rest columns.
Describe alternatives you've considered:
Teachability, Documentation, Adoption, Migration Strategy:
Subtask:
The text was updated successfully, but these errors were encountered: