Skip to content
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

Remove filter rewrite optimization for range aggregations when segment is not effective match all #15194

Merged
merged 19 commits into from
Aug 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Pkg private unwrapIntoConcreteQuery
Signed-off-by: Finn Carroll <carrofin@amazon.com>
  • Loading branch information
finnegancarroll committed Aug 13, 2024
commit b9bd78806b2a36750cf0f08fe81174970f9e36d1
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private Helper() {}
* Recursively unwraps query into the concrete form
* for applying the optimization
*/
public static Query unwrapIntoConcreteQuery(Query query) {
static Query unwrapIntoConcreteQuery(Query query) {
while (queryWrappers.containsKey(query.getClass())) {
query = queryWrappers.get(query.getClass()).apply(query);
}
Expand Down