File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ import { InsertStmt } from "./Insert";
3131import { MergeStmt } from "./Merge";
3232import { TruncateStmt } from "./Truncate";
3333import { UpdateStmt } from "./Update";
34- import { UnsupportedGrammarStmt } from "./UnsupportedGrammar";
3534import { DoStmt } from "./Do";
3635
3736export type Statement =
@@ -69,5 +68,4 @@ export type Statement =
6968 | MergeStmt
7069 | SelectStmt
7170 | TruncateStmt
72- | UpdateStmt
73- | UnsupportedGrammarStmt;
71+ | UpdateStmt;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ import { bigqueryMap } from "./dialects/bigquery";
4646import { postgresqlMap } from "./dialects/postgresql";
4747import { sqliteMap } from "./dialects/sqlite";
4848import { mysqlMap } from "./dialects/mysql";
49- import { unsupportedGrammarMap } from "./unsupported_grammar";
5049
5150export const transformMap: FullTransformMap<string> = {
5251 ...baseMap,
@@ -109,6 +108,4 @@ export const transformMap: FullTransformMap<string> = {
109108 // Expressions
110109 ...exprMap,
111110 ...dataTypeMap,
112-
113- ...unsupportedGrammarMap,
114111};
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments