refactor: migrate antlr4 v4.12.0 to antlr4ts(4.9.0) (#106)
* build: ignore gen folder * refactor: remove useless code * fix: correct the Javascript usage in grammar * refactor: move to antlr4ts * fix: remove useless * fix: update grammars for javascript target * refactor: migrate to antlr4ts * refactor: migrate to antlr4ts * refactor: implements ParserErrorListener * fix: rename the start reserved word * refactor: remove unused import * refactor: migrate to antlr4ts * test: update the expects of test cases * refactor: migrate hive to antlr4ts * refactor: update the incompatible syntax for antlr4ts * refactor: migrate pgsql grammar to antlr4ts, increasing tests * refactor: migrate the plsql to antlr4ts * build: remove unused config * build: migrate to antlr4ts * build: migrate ts-jest to @swc/jest * refactor: migrate to anltr4ts * build: migrate ts-jest to @swc/jest
This commit is contained in:
@ -490,12 +490,12 @@ windowFrame: (
|
||||
)?;
|
||||
|
||||
frameExtent:
|
||||
frameType = RANGE start = frameBound
|
||||
| frameType = ROWS start = frameBound
|
||||
| frameType = GROUPS start = frameBound
|
||||
| frameType = RANGE BETWEEN start = frameBound AND end = frameBound
|
||||
| frameType = ROWS BETWEEN start = frameBound AND end = frameBound
|
||||
| frameType = GROUPS BETWEEN start = frameBound AND end = frameBound;
|
||||
frameType = RANGE frameStart = frameBound
|
||||
| frameType = ROWS frameStart = frameBound
|
||||
| frameType = GROUPS frameStart = frameBound
|
||||
| frameType = RANGE BETWEEN frameStart = frameBound AND end = frameBound
|
||||
| frameType = ROWS BETWEEN frameStart = frameBound AND end = frameBound
|
||||
| frameType = GROUPS BETWEEN frameStart = frameBound AND end = frameBound;
|
||||
|
||||
frameBound:
|
||||
UNBOUNDED boundType = PRECEDING # unboundedFrame
|
||||
|
Reference in New Issue
Block a user