diff options
author | Vitalii Gridnev <gridnevvvit@gmail.com> | 2024-09-19 19:33:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-19 19:33:45 +0300 |
commit | 60dc4dfc59ffcf6973eb1151f80762ad3d1af7b1 (patch) | |
tree | 6070da33b06a9ec8df6feace62985adc26c58f40 | |
parent | d83894ea61b6955b837a1977c6d5c8e6df7bf25e (diff) | |
download | ydb-60dc4dfc59ffcf6973eb1151f80762ad3d1af7b1.tar.gz |
remove unused proto fields (#9500)
-rw-r--r-- | ydb/core/protos/kqp.proto | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ydb/core/protos/kqp.proto b/ydb/core/protos/kqp.proto index d3907b6d92..c9f4cc7442 100644 --- a/ydb/core/protos/kqp.proto +++ b/ydb/core/protos/kqp.proto @@ -606,14 +606,8 @@ message TKqpNodeResources { optional uint32 AvailableComputeActors = 4; // legacy optional uint64 UsedMemory = 5; // legacy optional uint64 TotalMemory = 7; // legacy - message TTxResources { - optional uint64 TxId = 1; - optional uint32 ComputeActors = 2; - optional uint64 Memory = 3; - optional uint32 StartTimestamp = 4; - } - repeated TTxResources Transactions = 6; // legacy + reserved 6; //////////////////////////////////////////////////// optional uint32 NodeId = 1; |