We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some AST cleanup work,
To the first point, notice how AST types are independent of PType as there are many syntaxes for a single type e.g. BOOL|BOOLEAN.
This PR would require defining AST expr literal variants for the parser rules
literal : NULL # LiteralNull | MISSING # LiteralMissing | TRUE # LiteralTrue | FALSE # LiteralFalse | LITERAL_STRING # LiteralString | LITERAL_INTEGER # LiteralInteger | LITERAL_DECIMAL # LiteralDecimal | ION_CLOSURE # LiteralIon | DATE LITERAL_STRING # LiteralDate | TIME ( PAREN_LEFT LITERAL_INTEGER PAREN_RIGHT )? (WITH TIME ZONE)? LITERAL_STRING # LiteralTime | TIMESTAMP ( PAREN_LEFT LITERAL_INTEGER PAREN_RIGHT )? (WITH TIME ZONE)? LITERAL_STRING # LiteralTimestamp ;
Along with updating the pretty-printer in org.partiql.ast.sql
org.partiql.ast.sql
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some AST cleanup work,
To the first point, notice how AST types are independent of PType as there are many syntaxes for a single type e.g. BOOL|BOOLEAN.
This PR would require defining AST expr literal variants for the parser rules
Along with updating the pretty-printer in
org.partiql.ast.sql
The text was updated successfully, but these errors were encountered: