aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorponasenko-rs <ponasenko-rs@yandex-team.com>2024-06-18 12:24:42 +0300
committerponasenko-rs <ponasenko-rs@yandex-team.com>2024-06-18 12:35:10 +0300
commitb06c6b7f153e1e88dd17b27b33ff519a76e9be7e (patch)
tree35251fbc24f6b2251819488eb31e748de039a617
parentd68a678bf36d213cb890d8bdfbdf34df6a40f8c1 (diff)
downloadydb-b06c6b7f153e1e88dd17b27b33ff519a76e9be7e.tar.gz
YT-20426: Use signed int in protobuf
42a5d34e3cd4068c569948ac6e181d5aebdbc2f4
-rw-r--r--yt/yt_proto/yt/client/tablet_client/proto/lock_mask.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt_proto/yt/client/tablet_client/proto/lock_mask.proto b/yt/yt_proto/yt/client/tablet_client/proto/lock_mask.proto
index 55d74bf6a0..9aaf6d521e 100644
--- a/yt/yt_proto/yt/client/tablet_client/proto/lock_mask.proto
+++ b/yt/yt_proto/yt/client/tablet_client/proto/lock_mask.proto
@@ -7,7 +7,7 @@ option go_package = "a.yandex-team.ru/yt/go/proto/client/tablet_client";
message TLockMask
{
repeated uint64 bitmap = 1;
- required uint32 size = 2;
+ required int32 size = 2;
}
////////////////////////////////////////////////////////////////////////////////