Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
idegtiarenko committed Dec 17, 2024
1 parent 9d682d0 commit dec7fb0
Show file tree
Hide file tree
Showing 8 changed files with 1,384 additions and 1,426 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 @@ -54,7 +54,7 @@ processingCommand
// in development
| {this.isDevVersion()}? inlinestatsCommand
| {this.isDevVersion()}? lookupCommand
| {this.isDevVersion()}? joinCommand
| joinCommand
;

whereCommand
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 dec7fb0

Please sign in to comment.