Unmute and fix exponential_histogram.LoadFiltered CSV test #137819
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #137727.
There was an occasional failure of the bwc tests with the following cause:
I think this happened for the following reason:
In #133393 I added the new ES|QL exponential_histogram type alongside with a capability named
exponential_histogram.In follow-up PRs I then only later added support for TopN (#137313) and CSV tests (#137619).
The CSV tests required the
exponential_histogram, which means we had some snapshot versions with that capability, but without TopN support. I wasn't aware that when running BWC tests, we have the feature flags on the older versions we test against enabled, which would produce this failure.This PR fixes this by adding a new capability, making the test depend on that and unmutes the test.