Skip to content

Commit af50807

Browse files
committed
Inline sqlite_statement
1 parent ac83d52 commit af50807

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/parser.pegjs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ statement_sqlite
9494
/ alter_table_stmt
9595
/ analyze_stmt
9696
/ explain_stmt
97-
/ sqlite_statement
97+
/ attach_database_stmt
98+
/ detach_database_stmt
99+
/ vacuum_stmt
100+
/ pragma_stmt
98101

99102
statement_mysql
100103
= compound_select_stmt
@@ -5695,12 +5698,6 @@ execute_using_clause
56955698
* *
56965699
* ------------------------------------------------------------------------------------ *
56975700
*/
5698-
sqlite_statement
5699-
= attach_database_stmt
5700-
/ detach_database_stmt
5701-
/ vacuum_stmt
5702-
/ pragma_stmt
5703-
57045701
attach_database_stmt
57055702
= kw:(ATTACH __) dbKw:(DATABASE __)? file:(expr __) asKw:(AS __) schema:ident {
57065703
return loc({

0 commit comments

Comments
 (0)