This is an automated email from the ASF dual-hosted git repository. gabriellee pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 91325e5ca3 [fix](pipeline) incorrect result when disabling sharing hash table (#16476) 91325e5ca3 is described below commit 91325e5ca30ca9ef4329236490c906b09e98b4f3 Author: Jerry Hu <mrh...@gmail.com> AuthorDate: Tue Feb 7 21:25:32 2023 +0800 [fix](pipeline) incorrect result when disabling sharing hash table (#16476) --- be/src/vec/sink/vdata_stream_sender.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/vdata_stream_sender.h b/be/src/vec/sink/vdata_stream_sender.h index 8b2c1e0847..e644aaf847 100644 --- a/be/src/vec/sink/vdata_stream_sender.h +++ b/be/src/vec/sink/vdata_stream_sender.h @@ -370,7 +370,7 @@ public: } if (eos || block->column_metas_size()) { RETURN_IF_ERROR(_buffer->add_block( - {this, block ? std::make_unique<PBlock>(std::move(*block)) : nullptr, eos})); + {this, block ? std::make_unique<PBlock>(*block) : nullptr, eos})); } return Status::OK(); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org