Skip to content

Commit ba02e1d

Browse files
committed
Move capability to the bottom
1 parent 3af81d5 commit ba02e1d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,12 +1042,6 @@ public enum Cap {
10421042
*/
10431043
DROP_AGAIN_WITH_WILDCARD_AFTER_EVAL,
10441044

1045-
/**
1046-
* During resolution (pre-analysis) we have to consider that joins can override regex extracted values
1047-
* see <a href="https://github.com/elastic/elasticsearch/issues/127467"> ES|QL: pruning of JOINs leads to missing fields #127467 </a>
1048-
*/
1049-
FIX_JOIN_MASKING_REGEX_EXTRACT,
1050-
10511045
/**
10521046
* Support last_over_time aggregation that gets evaluated per time-series
10531047
*/
@@ -1091,7 +1085,13 @@ public enum Cap {
10911085
/**
10921086
* Full text functions in STATS
10931087
*/
1094-
FULL_TEXT_FUNCTIONS_IN_STATS_WHERE;
1088+
FULL_TEXT_FUNCTIONS_IN_STATS_WHERE,
1089+
1090+
/**
1091+
* During resolution (pre-analysis) we have to consider that joins can override regex extracted values
1092+
* see <a href="https://github.com/elastic/elasticsearch/issues/127467"> ES|QL: pruning of JOINs leads to missing fields #127467 </a>
1093+
*/
1094+
FIX_JOIN_MASKING_REGEX_EXTRACT;
10951095

10961096
private final boolean enabled;
10971097

0 commit comments

Comments
 (0)