feat: add FlushTableExpr (#11)

This commit is contained in:
Weny Xu
2023-02-28 15:59:18 +08:00
committed by GitHub
parent 1599ae2a0d
commit 8365873e83
2 changed files with 185 additions and 83 deletions
+7
View File
@@ -51,6 +51,13 @@ message DropTableExpr {
string table_name = 3;
}
message FlushTableExpr {
string catalog_name = 1;
string schema_name = 2;
string table_name = 3;
optional uint32 region_id = 4;
}
message CreateDatabaseExpr {
//TODO(hl): maybe rename to schema_name?
string database_name = 1;