-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Fix sorting agg buckets by doc_count #53617
Conversation
I broke sorting aggregations by `doc_count` in elastic#51271 by mixing up true and false. This flips that comparison and adds a few tests to double check that we don't so this again.
Pinging @elastic/es-analytics-geo (:Analytics/Aggregations) |
I'm using the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I broke sorting aggregations by `doc_count` in elastic#51271 by mixing up true and false. This flips that comparison and adds a few tests to double check that we don't so this again.
PR #53617 has yet to be backported so we should skip its integration test on nodes earlier than 8.0.0
Merged and backported, thanks @not-napoleon ! |
@nik9000 did the backport go through? |
I broke sorting aggregations by
doc_count
in #51271 by mixing up trueand false. This flips that comparison and adds a few tests to double
check that we don't so this again.