File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2659,7 +2659,7 @@ insert_partition
26592659 = KW_PARTITION __ LPAREN __ head :ident_name tail :(__ COMMA __ ident_name )* __ RPAREN {
26602660 return createList (head, tail)
26612661 }
2662- / KW_PARTITION __ v : value_item {
2662+ / KW_PARTITION __ v :value_item {
26632663 return v
26642664 }
26652665
Original file line number Diff line number Diff line change @@ -232,10 +232,15 @@ export interface Select {
232232}
233233export interface Insert_Replace {
234234 type : "replace" | "insert" ;
235- db : string | null ;
236235 table : any ;
237236 columns : string [ ] | null ;
238237 values : InsertReplaceValue [ ] | Select ;
238+ partition : any [ ] ;
239+ prefix : string ;
240+ on_duplicate_update : {
241+ keyword : "on duplicate key update" ,
242+ set : SetList [ ] ;
243+ } ;
239244 loc ?: LocationRange ;
240245}
241246export interface Update {
You can’t perform that action at this time.
0 commit comments