feat: add flow_id and drop_if_exists to DropFlowExpr (#164)

* feat: add `flow_id` and `drop_if_exists` to `DropFlowExpr`

* chore: apply suggestions from CR

* chore: generate code
This commit is contained in:
Weny Xu
2024-05-10 12:32:37 +09:00
committed by GitHub
parent e152fcbf17
commit 219b2409bb
18 changed files with 2914 additions and 3279 deletions
+4
View File
@@ -56,6 +56,8 @@ message CreateFlowExpr {
message DropFlowExpr {
string catalog_name = 1;
string flow_name = 2;
FlowId flow_id = 3;
bool drop_if_exists = 5;
}
message CreateTableExpr {
@@ -135,6 +137,8 @@ message DropColumn { string name = 1; }
message TableId { uint32 id = 1; }
message FlowId { uint32 id = 1; }
message ColumnDef {
string name = 1;
ColumnDataType data_type = 2;