[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:
@ -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": [
|
||||
{
|
||||
|
||||
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user