Skip to content

Commit

Permalink
Fixed compile error with two conflicting PRs
Browse files Browse the repository at this point in the history
One PR added more usage of JOIN_LOOKUP_V9, while the other changed it to JOIN_LOOKUP_V10
  • Loading branch information
craigtaverner committed Jan 2, 2025
1 parent 4d57032 commit 314d211
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ record Listen(long timestamp, String songId, double duration) {
public void testLookupJoinIndexAllowed() throws Exception {
assumeTrue(
"Requires LOOKUP JOIN capability",
EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.JOIN_LOOKUP_V9.capabilityName()))
EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.JOIN_LOOKUP_V10.capabilityName()))
);

Response resp = runESQLCommand(
Expand Down Expand Up @@ -587,7 +587,7 @@ public void testLookupJoinIndexAllowed() throws Exception {
public void testLookupJoinIndexForbidden() throws Exception {
assumeTrue(
"Requires LOOKUP JOIN capability",
EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.JOIN_LOOKUP_V9.capabilityName()))
EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.JOIN_LOOKUP_V10.capabilityName()))
);

var resp = expectThrows(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ setup:
- method: POST
path: /_query
parameters: []
capabilities: [join_lookup_v9]
capabilities: [join_lookup_v10]
reason: "uses LOOKUP JOIN"
- do:
indices.create:
Expand Down

0 comments on commit 314d211

Please sign in to comment.