aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraleksandra-zh <aleksandra-zh@yandex-team.com>2023-10-11 19:24:33 +0300
committeraleksandra-zh <aleksandra-zh@yandex-team.com>2023-10-11 19:51:49 +0300
commit382c2d1a7016904a0843f1e8f315b9ad70e2b3f0 (patch)
tree548117334343eb1ef9bbf6530a5f407f502eab55
parent61b3971447e473726d6cdb23fc298e457b4d973c (diff)
downloadydb-382c2d1a7016904a0843f1e8f315b9ad70e2b3f0.tar.gz
Change proto statistics field numbers
-rw-r--r--yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto17
1 files changed, 12 insertions, 5 deletions
diff --git a/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto b/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto
index 85dabf4943..4341707185 100644
--- a/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto
+++ b/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto
@@ -1817,17 +1817,24 @@ message TColumnarStatistics
optional int64 timestamp_total_weight = 2;
optional int64 legacy_chunk_data_weight = 3 [default = 0];
+ // To fix chunks that were broken by ChunkMerger.
+ reserved 4;
+ reserved 5;
+ reserved 6;
+ reserved 7;
+ reserved 8;
+
// Per-column approximate minimum values. For more information check comments in NYT::NTableClient::TColumnarStatistics.
- optional bytes column_min_values = 4;
+ optional bytes column_min_values = 9;
// Per-column approximate maximum values. For more information check comments in NYT::NTableClient::TColumnarStatistics.
- optional bytes column_max_values = 5;
+ optional bytes column_max_values = 10;
// Number of non-null values in each column.
- repeated int64 column_non_null_value_counts = 6;
+ repeated int64 column_non_null_value_counts = 11;
// Total number of rows in all chunks whose meta contains columnar statistics.
- optional int64 chunk_row_count = 7;
+ optional int64 chunk_row_count = 12;
// Total number of rows in legacy chunks whose meta misses columnar statistics.
- optional int64 legacy_chunk_row_count = 8;
+ optional int64 legacy_chunk_row_count = 13;
}
message TRspGetColumnarStatistics