We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884bf00 commit 20e71baCopy full SHA for 20e71ba
src/api/protos/ydb_topic.proto
@@ -688,6 +688,10 @@ message StreamDirectReadMessage {
688
689
// Messages data
690
StreamReadMessage.ReadResponse.PartitionData partition_data = 3;
691
+
692
+ // Total size in bytes of this response as calculated by server.
693
+ // See ReadRequest comment above.
694
+ int64 bytes_size = 4;
695
}
696
697
src/client/types/operation/operation.cpp
@@ -23,6 +23,7 @@ class TOperation::TImpl {
23
, Ready_(operation.ready())
24
, CreateTime_(ProtoTimestampToInstant(operation.create_time()))
25
, EndTime_(ProtoTimestampToInstant(operation.end_time()))
26
+ , CreatedBy_(operation.created_by())
27
, Operation_(std::move(operation))
28
{
29
0 commit comments