Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

404 changes: 203 additions & 201 deletions x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ processingCommand
| mvExpandCommand
| joinCommand
| changePointCommand
| sparklineCommand
| completionCommand
| sampleCommand
| forkCommand
Expand Down Expand Up @@ -299,6 +300,10 @@ changePointCommand
: CHANGE_POINT value=qualifiedName (ON key=qualifiedName)? (AS targetType=qualifiedName COMMA targetPvalue=qualifiedName)?
;

sparklineCommand
: SPARKLINE value=field ON key=field (BY grouping=fields)?
;

forkCommand
: FORK forkSubQueries
;
Expand Down
Loading