forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dynamic filters pushdown from multiple operators on same column (f…
…acebookincubator#10478) Summary: Pull Request resolved: facebookincubator#10478 The data structure we used in table scan operator to keep dynamic filters can only hold one filter per column. When multiple operators pushing dynamic filters to the same column, the later ones would overwrite the previous filters on the same column. Fix this by merging the existing filter with the new filter. Differential Revision: D59814502
- Loading branch information
1 parent
fdb0f9b
commit 90c5037
Showing
2 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters