diff --git a/ydb/library/yql/dq/actors/spilling/channel_storage.cpp b/ydb/library/yql/dq/actors/spilling/channel_storage.cpp index 6a2ebac050f4..79ca0fdae147 100644 --- a/ydb/library/yql/dq/actors/spilling/channel_storage.cpp +++ b/ydb/library/yql/dq/actors/spilling/channel_storage.cpp @@ -63,7 +63,7 @@ class TDqChannelStorage : public IDqChannelStorage { ActorSystem_->Send(ChannelStorageActorId_, new TEvDqChannelSpilling::TEvPut(blobId, std::move(blob), std::move(promise)), /*flags*/0, cookie); - WritingBlobs_.emplace(blobId, TWritingBlobInfo(blobSize, std::move(future))); + WritingBlobs_.emplace(blobId, TWritingBlobInfo{blobSize, std::move(future)}); WritingBlobsTotalSize_ += blobSize; }