File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments