-
Notifications
You must be signed in to change notification settings - Fork 156
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
Optimize query plans for incremental join evaluation #553
Comments
joshua-spacetime
added a commit
that referenced
this issue
Nov 14, 2023
joshua-spacetime
added a commit
that referenced
this issue
Nov 14, 2023
joshua-spacetime
added a commit
that referenced
this issue
Nov 15, 2023
Fixes #553. Before this change, we would use the same plan for both query and incremental eval. This is problematic for index joins. In particular, table sizes are drastically different under incremental eval. After this change, joins are reordered for incremental eval.
jdetter
pushed a commit
that referenced
this issue
Nov 15, 2023
Fixes #553. Before this change, we would use the same plan for both query and incremental eval. This is problematic for index joins. In particular, table sizes are drastically different under incremental eval. After this change, joins are reordered for incremental eval.
joshua-spacetime
added a commit
that referenced
this issue
Nov 15, 2023
Fixes #553. Before this change, we would use the same plan for both query and incremental eval. This is problematic for index joins. In particular, table sizes are drastically different under incremental eval. After this change, joins are reordered for incremental eval.
joshua-spacetime
added a commit
that referenced
this issue
Nov 15, 2023
Fixes #553. Before this change, we would use the same plan for both query and incremental eval. This is problematic for index joins. In particular, table sizes are drastically different under incremental eval. After this change, joins are reordered for incremental eval.
jdetter
pushed a commit
that referenced
this issue
Nov 15, 2023
Fixes #553. Before this change, we would use the same plan for both query and incremental eval. This is problematic for index joins. In particular, table sizes are drastically different under incremental eval. After this change, joins are reordered for incremental eval.
joshua-spacetime
added a commit
that referenced
this issue
Nov 15, 2023
Fixes #553. Before this change, we would use the same plan for both query and incremental eval. This is problematic for index joins. In particular, table sizes are drastically different under incremental eval. After this change, joins are reordered for incremental eval.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We generate index nested loop join plans for applicable semijoin queries, however these same plans are not optimal when performing incremental evaluation. We need to make sure that we generate optimal plans for both full and incremental evaluation.
The text was updated successfully, but these errors were encountered: