We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e53ac commit d13a63cCopy full SHA for d13a63c
types.d.ts
@@ -127,6 +127,7 @@ export interface SetList {
127
export interface InsertReplaceValue {
128
type: "expr_list";
129
value: any[];
130
+ prefix?: string;
131
loc?: LocationRange;
132
}
133
@@ -280,7 +281,10 @@ export interface Insert_Replace {
280
281
type: "replace" | "insert";
282
table: any;
283
columns: string[] | null;
- values: InsertReplaceValue[] | Select;
284
+ values: {
285
+ type: 'values',
286
+ values: InsertReplaceValue[]
287
+ } | Select;
288
partition: any[];
289
prefix: string;
290
on_duplicate_update: {
0 commit comments