Skip to content

Commit

Permalink
feat: add if not exists for each col
Browse files Browse the repository at this point in the history
  • Loading branch information
evenyag committed Dec 31, 2024
1 parent aa0a11f commit bf76e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proto/greptime/v1/ddl.proto
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ message DropDatabaseExpr {

message AddColumns {
repeated AddColumn add_columns = 1;
bool add_if_not_exists = 2;
}

message DropColumns { repeated DropColumn drop_columns = 1; }
Expand All @@ -159,6 +158,7 @@ message RenameTable { string new_table_name = 1; }
message AddColumn {
ColumnDef column_def = 1;
AddColumnLocation location = 3;
bool add_if_not_exists = 4;
}

message ModifyColumnType {
Expand Down

0 comments on commit bf76e41

Please sign in to comment.