Skip to content

Commit b190b6e

Browse files
committed
gate new test query
1 parent 8d0e813 commit b190b6e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/resources/lookup-join.csv-spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5629,6 +5629,7 @@ id_int:integer | name_str:keyword | extra1:keyword | other1:keyword | other2:int
56295629
// https://github.com/elastic/elasticsearch/issues/134407
56305630
SortOnFieldNullifiedDueToJoinKeyMissingInSomeOfTheIndices
56315631
required_capability: join_lookup_v12
5632+
required_capability: fixed_pushdown_past_project_with_attributes_resolution
56325633

56335634
from sample_data,languages_mixed_numerics,apps
56345635
| rename language_code_byte as language_code

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,11 @@ public enum Cap {
549549
*/
550550
FIXED_PUSHDOWN_PAST_PROJECT,
551551

552+
/**
553+
* When resolving renames, consider all {@code Attribute}s in the plan, not just the {@code ReferenceAttribute}s.
554+
*/
555+
FIXED_PUSHDOWN_PAST_PROJECT_WITH_ATTRIBUTES_RESOLUTION,
556+
552557
/**
553558
* Adds the {@code MV_PSERIES_WEIGHTED_SUM} function for converting sorted lists of numbers into
554559
* a bounded score. This is a generalization of the

0 commit comments

Comments
 (0)