Skip to content

Commit

Permalink
Merge 7fedd59 into e6457a7
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA authored Nov 27, 2024
2 parents e6457a7 + 7fedd59 commit 71dc878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/library/yql/dq/common/rope_over_buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ TRope MakeReadOnlyRope(TChunkedBuffer&& buffer) {
while (!buffer.Empty()) {
auto& front = buffer.Front();
TRope chunk(new TContigousChunkOverBuf(front.Owner, {front.Buf.data(), front.Buf.size()}));
result.Insert(result.End(), TRope(new TContigousChunkOverBuf(front.Owner, {front.Buf.data(), front.Buf.size()})));
result.Insert(result.End(), std::move(chunk));
buffer.Erase(front.Buf.size());
}

Expand Down

0 comments on commit 71dc878

Please sign in to comment.