You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -118,6 +118,7 @@ public MultiClusterSpecIT(
118
118
"LookupJoinOnTwoFieldsMultipleTimes",
119
119
// Lookup join after LIMIT is not supported in CCS yet
120
120
"LookupJoinAfterLimitAndRemoteEnrich",
121
+
"LookupJoinExpressionAfterLimitAndRemoteEnrich",
121
122
// Lookup join after FORK is not support in CCS yet
warning:Line 3:3: evaluation of [LOOKUP JOIN multi_column_joinable_lookup ON id_int < left_id AND is_active_left == is_active_bool] failed, treating result as null. Only first 20 failures recorded.
| RENAME id_int AS id_left, name_str AS name_left, is_active_bool AS is_active_left, ip_addr AS ip_addr_left
562
+
| LOOKUP JOIN multi_column_joinable_lookup ON id_left == id_int AND name_left == name_str AND id_left < other2
563
+
| KEEP id_left, name_left, extra1, other1, other2
564
+
| SORT id_left, name_left, extra1, other1, other2
565
+
;
566
+
567
+
warning:Line 3:3: evaluation of [LOOKUP JOIN multi_column_joinable_lookup ON id_left == id_int AND name_left == name_str AND id_left < other2] failed, treating result as null. Only first 20 failures recorded.
| RENAME id_int AS id_left, name_str AS name_left, is_active_bool AS is_active_left, ip_addr AS ip_addr_left
599
+
| LOOKUP JOIN multi_column_joinable_lookup ON id_left == id_int AND name_left == name_str AND extra2 > id_int
600
+
| KEEP id_left, name_left, extra1, other1, other2
601
+
| SORT id_left, name_left, extra1, other1, other2
602
+
;
603
+
604
+
warning:Line 3:3: evaluation of [LOOKUP JOIN multi_column_joinable_lookup ON id_left == id_int AND name_left == name_str AND extra2 > id_int] failed, treating result as null. Only first 20 failures recorded.
warning:Line 4:3: evaluation of [LOOKUP JOIN multi_column_joinable_lookup ON id_left == id_int AND name_left == name_str AND left_id2 != id_int] failed, treating result as null. Only first 20 failures recorded.
warning:Line 2:9: evaluation of [id_int == 1] failed, treating result as null. Only first 20 failures recorded.
684
+
warning:Line 2:9: java.lang.IllegalArgumentException: single-value function encountered multi-value
685
+
warning:Line 6:3: evaluation of [LOOKUP JOIN multi_column_joinable_lookup ON id_left == id_int AND other1_from_first_join != other1] failed, treating result as null. Only first 20 failures recorded.
| RENAME id_int AS id_left, is_active_bool AS is_active_left
717
+
| LOOKUP JOIN multi_column_joinable_lookup ON id_int == id_left and is_active_left == is_active_bool
718
+
| WHERE other2 > 5000
719
+
| KEEP id_int, name_str, extra1, other1, other2
720
+
| SORT id_int, name_str, extra1, other1, other2
721
+
| LIMIT 20
722
+
;
723
+
724
+
warning:Line 3:3: evaluation of [LOOKUP JOIN multi_column_joinable_lookup ON id_int == id_left and is_active_left == is_active_bool] failed, treating result as null. Only first 20 failures recorded.
0 commit comments