Skip to content

Commit cbb208a

Browse files
committed
Fix capacity
1 parent 5f29e49 commit cbb208a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -932,12 +932,7 @@ public enum Cap {
932932
/**
933933
* Support for sorting when aggregate_metric_doubles are present
934934
*/
935-
AGGREGATE_METRIC_DOUBLE_SORTING(AGGREGATE_METRIC_DOUBLE_FEATURE_FLAG),
936-
937-
/**
938-
* Support and enable partial results by default
939-
*/
940-
ESQL_PARTIAL_RESULTS;
935+
AGGREGATE_METRIC_DOUBLE_SORTING(AGGREGATE_METRIC_DOUBLE_FEATURE_FLAG);
941936

942937
private final boolean enabled;
943938

x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/63_enrich_int_range.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ teardown:
198198
- method: POST
199199
path: /_query
200200
parameters: [ ]
201-
capabilities: [ esql_allow_partial_results ]
201+
capabilities: [ support_partial_results ]
202202
reason: "disable partial_results"
203203
- do:
204204
catch: /ENRICH range and input types are incompatible. range\[INTEGER\], input\[DOUBLE\]/

0 commit comments

Comments
 (0)