File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
qa/testFixtures/src/main/resources
src/main/java/org/elasticsearch/xpack/esql/action Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -426,6 +426,7 @@ emp_no:integer |first_name:keyword
426426
427427# test for https://github.com/elastic/elasticsearch/issues/128813
428428rlikeWithEmptyLanguagePattern
429+ required_capability: rlike_with_empty_language_pattern
429430ROW x = "abc" | EVAL bool = x RLIKE "#"
430431;
431432
Original file line number Diff line number Diff line change @@ -1164,7 +1164,12 @@ public enum Cap {
11641164 /**
11651165 * Enable support for index aliases in lookup joins
11661166 */
1167- ENABLE_LOOKUP_JOIN_ON_ALIASES (JOIN_LOOKUP_V12 .isEnabled ());
1167+ ENABLE_LOOKUP_JOIN_ON_ALIASES (JOIN_LOOKUP_V12 .isEnabled ()),
1168+
1169+ /**
1170+ * Allows RLIKE to correctly handle the "empty language" flag, `#`.
1171+ */
1172+ RLIKE_WITH_EMPTY_LANGUAGE_PATTERN ;
11681173
11691174 private final boolean enabled ;
11701175
You can’t perform that action at this time.
0 commit comments