This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-1.1-lts
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-1.1-lts by this push:
     new c867912d1c [fix](olap) Not enough rows have been read with aggregate 
model (#19361)
c867912d1c is described below

commit c867912d1cba18c595ae50f731698026dd336689
Author: Jerry Hu <mrh...@gmail.com>
AuthorDate: Mon May 8 10:30:50 2023 +0800

    [fix](olap) Not enough rows have been read with aggregate model (#19361)
---
 be/src/exec/olap_scan_node.cpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/be/src/exec/olap_scan_node.cpp b/be/src/exec/olap_scan_node.cpp
index d9c0506ce5..9421ddd105 100644
--- a/be/src/exec/olap_scan_node.cpp
+++ b/be/src/exec/olap_scan_node.cpp
@@ -1642,10 +1642,6 @@ void OlapScanNode::scanner_thread(OlapScanner* scanner) {
             raw_bytes_read += 
row_batch->tuple_data_pool()->total_reserved_bytes();
         }
         raw_rows_read = scanner->raw_rows_read();
-        if (limit() != -1 && raw_rows_read >= limit()) {
-            eos = true;
-            break;
-        }
     }
 
     {


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

Reply via email to