-
Notifications
You must be signed in to change notification settings - Fork 755
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
feat: filter() function return remain_columns and deleted_columns for statistics #8767
feat: filter() function return remain_columns and deleted_columns for statistics #8767
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
This will make filter queries work slower than before which is unacceptable. If you want to have the deleted column, there are some other ways like using |
|
I prefer not to add the deleted to the filter function, it's a common function and is a hot path. |
An extra memory copy for the column value is much more costable than an extra loop. |
i agree that @sundy-li I have another question, if |
I don't think we should add extra arg to do that. Let's make the The simplest way to have is |
I hereby agree to the terms of the CLA available at: https://databend.rs/dev/policies/cla/
Summary
feat: filter() function return remain_columns and deleted_columns for statistics
Closes #8766