We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac83d52 commit af50807Copy full SHA for af50807
src/parser.pegjs
@@ -94,7 +94,10 @@ statement_sqlite
94
/ alter_table_stmt
95
/ analyze_stmt
96
/ explain_stmt
97
- / sqlite_statement
+ / attach_database_stmt
98
+ / detach_database_stmt
99
+ / vacuum_stmt
100
+ / pragma_stmt
101
102
statement_mysql
103
= compound_select_stmt
@@ -5695,12 +5698,6 @@ execute_using_clause
5695
5698
* *
5696
5699
* ------------------------------------------------------------------------------------ *
5697
5700
*/
-sqlite_statement
- = attach_database_stmt
- / detach_database_stmt
5701
- / vacuum_stmt
5702
- / pragma_stmt
5703
-
5704
attach_database_stmt
5705
= kw:(ATTACH __) dbKw:(DATABASE __)? file:(expr __) asKw:(AS __) schema:ident {
5706
return loc({
0 commit comments