yiguolei commented on code in PR #41968:
URL: https://github.com/apache/doris/pull/41968#discussion_r1804664930


##########
be/src/vec/sink/vdata_stream_sender.cpp:
##########
@@ -147,13 +132,13 @@ Status PipChannel::send_remote_block(PBlock* block, bool 
eos, Status exec_status
         }
     }
     if (eos || block->column_metas_size()) {
-        RETURN_IF_ERROR(_buffer->add_block({this, std::move(pblock_ptr), eos, 
exec_status}));
+        RETURN_IF_ERROR(_buffer->add_block({this, std::move(block), eos, 
exec_status}));
     }
     return Status::OK();
 }
 
-Status 
PipChannel::send_broadcast_block(std::shared_ptr<BroadcastPBlockHolder>& block, 
bool eos) {
-    
COUNTER_UPDATE(Channel<pipeline::ExchangeSinkLocalState>::_parent->blocks_sent_counter(),
 1);
+Status Channel::send_broadcast_block(std::shared_ptr<BroadcastPBlockHolder>& 
block, bool eos) {
+    COUNTER_UPDATE(_parent->blocks_sent_counter(), 1);
     if (eos) {
         if (_eos_send) {

Review Comment:
   eos_send 是什么意思?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to