feat: add drop database expr (#139)

This commit is contained in:
Weny Xu
2024-03-19 17:51:02 +08:00
committed by GitHub
parent 349cb38558
commit 06f6297ff3
10 changed files with 3479 additions and 365 deletions
+6
View File
@@ -82,6 +82,12 @@ message TruncateTableExpr {
TableId table_id = 4;
}
message DropDatabaseExpr {
string catalog_name = 1;
string schema_name = 2;
bool drop_if_exists = 3;
}
message AddColumns { repeated AddColumn add_columns = 1; }
message DropColumns { repeated DropColumn drop_columns = 1; }