Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,6 @@ tests:
- class: org.elasticsearch.xpack.inference.action.filter.ShardBulkInferenceActionFilterBasicLicenseIT
method: testLicenseInvalidForInference {p0=false}
issue: https://github.com/elastic/elasticsearch/issues/137691
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT
method: test {csv-spec:exponential_histogram.LoadFiltered}
issue: https://github.com/elastic/elasticsearch/issues/137727
- class: org.elasticsearch.xpack.inference.InferenceRestIT
method: test {p0=inference/70_text_similarity_rank_retriever/Text similarity reranker with min_score zero includes all docs}
issue: https://github.com/elastic/elasticsearch/issues/137732
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
loadFiltered
required_capability: exponential_histogram
required_capability: exponential_histogram_topn

FROM exp_histo_sample | WHERE STARTS_WITH(instance, "dummy") | SORT instance | KEEP instance, responseTime
;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1547,6 +1547,11 @@ public enum Cap {
*/
EXPONENTIAL_HISTOGRAM(EXPONENTIAL_HISTOGRAM_FEATURE_FLAG),

/**
* Support for exponential_histogram type in TOPN
*/
EXPONENTIAL_HISTOGRAM_TOPN(EXPONENTIAL_HISTOGRAM_FEATURE_FLAG),

/**
* Create new block when filtering OrdinalBytesRefBlock
*/
Expand Down