Skip to content

Commit

Permalink
enable lookup in serverless
Browse files Browse the repository at this point in the history
  • Loading branch information
idegtiarenko committed Dec 17, 2024
1 parent 721c0f1 commit 9face5f
Show file tree
Hide file tree
Showing 8 changed files with 1,386 additions and 1,428 deletions.
10 changes: 5 additions & 5 deletions x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ DEV_INLINESTATS : {this.isDevVersion()}? 'inlinestats' -> pushMode(EXPRESSION_
DEV_LOOKUP : {this.isDevVersion()}? 'lookup_🐔' -> pushMode(LOOKUP_MODE);
DEV_METRICS : {this.isDevVersion()}? 'metrics' -> pushMode(METRICS_MODE);
// list of all JOIN commands
DEV_JOIN : {this.isDevVersion()}? 'join' -> pushMode(JOIN_MODE);
DEV_JOIN_FULL : {this.isDevVersion()}? 'full' -> pushMode(JOIN_MODE);
DEV_JOIN_LEFT : {this.isDevVersion()}? 'left' -> pushMode(JOIN_MODE);
DEV_JOIN_RIGHT : {this.isDevVersion()}? 'right' -> pushMode(JOIN_MODE);
DEV_JOIN_LOOKUP : {this.isDevVersion()}? 'lookup' -> pushMode(JOIN_MODE);
DEV_JOIN : 'join' -> pushMode(JOIN_MODE);
DEV_JOIN_FULL : 'full' -> pushMode(JOIN_MODE);
DEV_JOIN_LEFT : 'left' -> pushMode(JOIN_MODE);
DEV_JOIN_RIGHT : 'right' -> pushMode(JOIN_MODE);
DEV_JOIN_LOOKUP : 'lookup' -> pushMode(JOIN_MODE);


//
Expand Down
5 changes: 5 additions & 0 deletions x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ processingCommand
| mvExpandCommand
// in development
| {this.isDevVersion()}? inlinestatsCommand
| {this.isDevVersion()}? lookupCommand
| lookupCommand
| {this.isDevVersion()}? joinCommand
;

Expand Down
5 changes: 5 additions & 0 deletions x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit 9face5f

Please sign in to comment.