[chore](proto) modify the order of store_row_column and is_dynamic_schema to be compatible with branch-1.2-lts (#18232)

This commit is contained in:
lihangyu
2023-04-12 11:59:56 +08:00
committed by GitHub
parent 155e4e547b
commit ecb22ad35e
2 changed files with 5 additions and 5 deletions

View File

@ -57,9 +57,9 @@
"compression_type": "LZ4F",
"schema_version": 0,
"disable_auto_compaction": false,
"version_col_idx": -1,
"store_row_column": false,
"is_dynamic_schema": false,
"version_col_idx": -1
"is_dynamic_schema": false
},
"rs_metas": [
{

View File

@ -228,9 +228,9 @@ message TabletSchemaPB {
optional int32 schema_version = 14;
optional bool disable_auto_compaction = 15 [default=false];
repeated TabletIndexPB index = 16;
optional bool store_row_column = 17 [default=false]; // store tuplerow oriented column
optional bool is_dynamic_schema = 18 [default=false];
optional int32 version_col_idx = 19 [default = -1];
optional int32 version_col_idx = 17 [default = -1];
optional bool store_row_column = 18 [default=false]; // store tuplerow oriented column
optional bool is_dynamic_schema = 19 [default=false];
}
enum TabletStatePB {