Skip to content
Snippets Groups Projects
Commit cee49b79 authored by Artur Sabirov's avatar Artur Sabirov
Browse files

query.ebnf: proofread

parent 405b6f3a
No related branches found
No related tags found
1 merge request!1414sbroad import
......@@ -25,8 +25,8 @@ expression ::= ('NOT'* (
| case
| cast
| current_date
| substr
| like
| substr
| to_char
| to_date
| trim
......@@ -50,7 +50,7 @@ case ::= 'CASE' expression?
('WHEN' expression 'THEN' expression)+
('ELSE' expression)? 'END'
cast ::= 'CAST' '(' expression 'AS' type ')' | expression '::' type
like ::= (expression 'LIKE' expression ('ESCAPE' expression)?)
like ::= expression 'LIKE' expression ('ESCAPE' expression)?
to_char ::= 'TO_CHAR' '(' expression ',' format ')'
to_date ::= 'TO_DATE' '(' expression ',' format ')'
trim ::= 'TRIM' '('
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment