Skip to content

Commit c17c993

Browse files
Bugfixes
1 parent 744479f commit c17c993

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1281,6 +1281,10 @@ public enum Cap {
12811281
*/
12821282
COSINE_VECTOR_SIMILARITY_FUNCTION(Build.current().isSnapshot()),
12831283

1284+
/**
1285+
* Support for lookup join on multiple indices.
1286+
*/
1287+
LOOKUP_JOIN_ON_MULTIPLE_INDICES,
12841288
/**
12851289
* Support for the options field of CATEGORIZE.
12861290
*/

x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/190_lookup_join.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,13 @@ lookup-no-key:
279279

280280
---
281281
basic join on two columns:
282+
- requires:
283+
capabilities:
284+
- method: POST
285+
path: /_query
286+
parameters: [ ]
287+
capabilities: [ lookup_join_on_multiple_indices ]
288+
reason: "uses LOOKUP JOIN on two columns"
282289
- do:
283290
esql.query:
284291
body:

0 commit comments

Comments
 (0)