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.
2 parents fb9c295 + d13a63c commit 4dbe79bCopy full SHA for 4dbe79b
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