File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
qa/testFixtures/src/main/resources
src/main/java/org/elasticsearch/xpack/esql/action Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -992,6 +992,7 @@ beta | Kubernetes cluster
992992;
993993
994994startsWithLucenePushdownIgnoreMultivalues
995+ required_capability: starts_with_ends_with_lucene_pushdown
995996
996997from hosts
997998| where starts_with(description, "epsilon")
@@ -1260,6 +1261,7 @@ beta | Kubernetes cluster
12601261;
12611262
12621263endsWithLucenePushdownIgnoreMultivalues
1264+ required_capability: starts_with_ends_with_lucene_pushdown
12631265
12641266from hosts
12651267| where ends_with(description, "host")
Original file line number Diff line number Diff line change @@ -710,6 +710,12 @@ public enum Cap {
710710 */
711711 MIXED_NUMERIC_TYPES_IN_CASE_GREATEST_LEAST ,
712712
713+ /**
714+ * Lucene query pushdown to StartsWith and EndsWith functions.
715+ * This capability was created to avoid receiving wrong warnings from old nodes in mixed clusters
716+ */
717+ STARTS_WITH_ENDS_WITH_LUCENE_PUSHDOWN ,
718+
713719 /**
714720 * Full text functions can be scored when being part of a disjunction
715721 */
You can’t perform that action at this time.
0 commit comments