-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[8.18] ESQL: Enable LOOKUP JOIN in non-snapshot builds (#121193) #121306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This effectively releases LOOKUP JOIN into tech preview. Docs will follow in a separate PR. * Enable the lexing/grammar for LOOKUP JOIN in non-snapshot builds. * Remove the grammar for the unsupported | JOIN ... command (without LOOKUP as first keyword). The way the lexer modes work, otherwise we'd also have to enable | JOIN ... syntax on non-snapshot builds and would have to add additional validation to provide appropriate error messages. * Remove grammar for LOOKUP JOIN index AS ... because qualifiers are not yet supported. Otherwise we'd have to put in additional validation as well to prevent such queries. --------- Co-authored-by: Bogdan Pintea <[email protected]> Co-authored-by: elasticsearchmachine <[email protected]> Co-authored-by: Nik Everett <[email protected]>
|
The part 2 failure is the same one we ignored in #121193 (comment) - and we're ok continuing to ignore it here. |
|
Check part 3 is also ok - it's almost the same failures in #121193 (comment) which are ok. It has one extra - #121075 - which we're also ok with. |
|
run elasticsearch-ci/checkPart4 / release-tests |
|
run elasticsearch-ci/checkPart4 |
|
@elasticmachine, run elasticsearch-ci/checkPart4 / release-tests |
|
|
|
I've retried it. |
|
The 8.16bwc failure looks like #121350 The other failures line up with #121193 (comment) which we consider non-blocking. They should be fixed soon and are unrelated to this. |
Manual backport of #121193