File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ options {
6
6
}
7
7
8
8
// Input is a list of statements.
9
- sql_query: sql_stmt_list | ( PRAGMA ANSI DIGITS ansi_sql_stmt_list) ;
9
+ sql_query: sql_stmt_list | PRAGMA ANSI DIGITS ansi_sql_stmt_list;
10
10
sql_stmt_list: SEMICOLON* sql_stmt (SEMICOLON+ sql_stmt)* SEMICOLON* EOF;
11
11
ansi_sql_stmt_list: SEMICOLON* EOF;
12
12
@@ -210,8 +210,8 @@ json_exists: JSON_EXISTS LPAREN
210
210
json_exists_handler?
211
211
RPAREN;
212
212
213
- json_query_wrapper: ( WITHOUT ARRAY?) | WITH (CONDITIONAL | UNCONDITIONAL)? ARRAY?;
214
- json_query_handler: ERROR | NULL | ( EMPTY ARRAY) | ( EMPTY OBJECT) ;
213
+ json_query_wrapper: WITHOUT ARRAY? | WITH (CONDITIONAL | UNCONDITIONAL)? ARRAY?;
214
+ json_query_handler: ERROR | NULL | EMPTY ARRAY | EMPTY OBJECT;
215
215
216
216
json_query: JSON_QUERY LPAREN
217
217
json_common_args
@@ -248,7 +248,7 @@ invoke_expr_tail:
248
248
(null_treatment | filter_clause)? (OVER window_name_or_specification)?
249
249
;
250
250
251
- using_call_expr: (an_id_or_type NAMESPACE an_id_or_type | an_id_expr | bind_parameter | ( EXTERNAL FUNCTION) ) invoke_expr;
251
+ using_call_expr: (an_id_or_type NAMESPACE an_id_or_type | an_id_expr | bind_parameter | EXTERNAL FUNCTION) invoke_expr;
252
252
253
253
key_expr: LBRACE_SQUARE expr RBRACE_SQUARE;
254
254
You can’t perform that action at this time.
0 commit comments