Skip to content

Commit 20e71ba

Browse files
committed
Add StartTime/EndTime/UserSID for BuildIndex (#16971) (#17751)
1 parent 884bf00 commit 20e71ba

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/api/protos/ydb_topic.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,10 @@ message StreamDirectReadMessage {
688688

689689
// Messages data
690690
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;
691695
}
692696
}
693697

src/client/types/operation/operation.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class TOperation::TImpl {
2323
, Ready_(operation.ready())
2424
, CreateTime_(ProtoTimestampToInstant(operation.create_time()))
2525
, EndTime_(ProtoTimestampToInstant(operation.end_time()))
26+
, CreatedBy_(operation.created_by())
2627
, Operation_(std::move(operation))
2728
{
2829
}

0 commit comments

Comments
 (0)