Skip to content

Commit

Permalink
Merge pull request #1739 from taozhi8833998/refactor-type-pg
Browse files Browse the repository at this point in the history
refactor: update type definition
  • Loading branch information
taozhi8833998 authored Dec 30, 2023
2 parents 216074a + 0253511 commit b78c6f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ast/postgresql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ export interface replace_insert_stmt_node {
type: 'insert' | 'replace';
table?: [table_name];
columns: column_list;
conflict?: on_clifict;
conflict?: on_conflict;
values: insert_value_clause;
partition?: insert_partition;
returning?: returning_stmt;
Expand Down
2 changes: 1 addition & 1 deletion pegjs/postgresql.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -3481,7 +3481,7 @@ replace_insert_stmt
type: 'insert' | 'replace';
table?: [table_name];
columns: column_list;
conflict?: on_clifict;
conflict?: on_conflict;
values: insert_value_clause;
partition?: insert_partition;
returning?: returning_stmt;
Expand Down
2 changes: 1 addition & 1 deletion pegjs/snowflake.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -2834,7 +2834,7 @@ replace_insert_stmt
type: 'insert' | 'replace';
table?: [table_name];
columns: column_list;
conflict?: on_clifict;
conflict?: on_conflict;
values: insert_value_clause;
partition?: insert_partition;
returning?: returning_stmt;
Expand Down

0 comments on commit b78c6f8

Please sign in to comment.