From c64f804b0b6460b9918c711dceb3f5f7833f6f34 Mon Sep 17 00:00:00 2001 From: Xr Ling <63634816+lxr599@users.noreply.github.com> Date: Thu, 18 Jul 2024 09:41:53 +0800 Subject: [PATCH] [fix](Row store) compatible with 'branch-3.0' (#38022) compatible with 'branch-3.0' --- gensrc/proto/olap_file.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gensrc/proto/olap_file.proto b/gensrc/proto/olap_file.proto index 8c1b21fa3cf93b..9e10c15a577b7b 100644 --- a/gensrc/proto/olap_file.proto +++ b/gensrc/proto/olap_file.proto @@ -412,8 +412,8 @@ message TabletSchemaCloudPB { optional InvertedIndexStorageFormatPB inverted_index_storage_format = 25 [default=V1]; // column unique ids for row store columns repeated int32 row_store_column_unique_ids = 26; - optional bool enable_mow_light_delete = 27 [default=false]; - optional int64 row_store_page_size = 28 [default=16384]; + optional int64 row_store_page_size = 27 [default=16384]; + optional bool enable_mow_light_delete = 28 [default=false]; optional bool is_dynamic_schema = 100 [default=false]; }