Gabriel39 commented on code in PR #42333:
URL: https://github.com/apache/doris/pull/42333#discussion_r1814141302


##########
be/src/pipeline/local_exchange/local_exchanger.cpp:
##########
@@ -170,11 +170,11 @@ Status ShuffleExchanger::get_block(RuntimeState* state, 
vectorized::Block* block
 Status ShuffleExchanger::_split_rows(RuntimeState* state, const uint32_t* 
__restrict channel_ids,
                                      vectorized::Block* block,
                                      LocalExchangeSinkLocalState& local_state) 
{
-    const auto rows = block->rows();
+    const auto rows = int32_t(block->rows());

Review Comment:
   ```suggestion
       const auto rows =cast_set<int32_t>(block->rows());
   ```



-- 
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