refactor: remove **all** unnecessary 'optional' notation (#91)

This commit is contained in:
zyy17
2023-08-30 11:08:14 +08:00
committed by GitHub
parent ec2d346e09
commit e8e228b026
14 changed files with 685 additions and 1114 deletions
+2 -2
View File
@@ -78,7 +78,7 @@ message FlushTableExpr {
string catalog_name = 1;
string schema_name = 2;
string table_name = 3;
optional uint32 region_number = 4;
uint32 region_number = 4;
TableId table_id = 5;
}
@@ -86,7 +86,7 @@ message CompactTableExpr {
string catalog_name = 1;
string schema_name = 2;
string table_name = 3;
optional uint32 region_number = 4;
uint32 region_number = 4;
}
message CreateDatabaseExpr {