feat: remove create_if_not_exists from region CreateRequest (#106)

This commit is contained in:
Yingwen
2023-09-20 16:11:27 +08:00
committed by GitHub
parent 9d3f28d07d
commit 115c108077
4 changed files with 136 additions and 295 deletions
+2 -4
View File
@@ -83,12 +83,10 @@ message CreateRequest {
repeated RegionColumnDef column_defs = 3;
// Column Id of primary keys.
repeated uint32 primary_key = 4;
// Create region if not exists.
bool create_if_not_exists = 5;
// Region storage path
string path = 6;
string path = 5;
// Options of the created region.
map<string, string> options = 7;
map<string, string> options = 6;
// TODO: add partition def
}