File tree Expand file tree Collapse file tree 2 files changed +8
-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 +8
-1
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ Milky Way
174174;
175175
176176dropAgainWithWildcardAfterEval
177+ required_capability:drop_again_with_wildcard_after_eval
177178from languages
178179| eval language_code = 12, x = 13
179180| drop language_code
Original file line number Diff line number Diff line change @@ -1017,7 +1017,13 @@ public enum Cap {
10171017 * During resolution (pre-analysis) we have to consider that joins or enriches can override EVALuated values
10181018 * https://github.com/elastic/elasticsearch/issues/126419
10191019 */
1020- FIX_JOIN_MASKING_EVAL ;
1020+ FIX_JOIN_MASKING_EVAL ,
1021+
1022+ /**
1023+ * Support for keeping `DROP` attributes when resolving field names.
1024+ * see <a href="https://github.com/elastic/elasticsearch/issues/126418"> ES|QL: no matches for pattern #126418 </a>
1025+ */
1026+ DROP_AGAIN_WITH_WILDCARD_AFTER_EVAL ;
10211027
10221028 private final boolean enabled ;
10231029
You can’t perform that action at this time.
0 commit comments