englefly commented on code in PR #10397:
URL: https://github.com/apache/doris/pull/10397#discussion_r905815365


##########
be/src/olap/rowset/segment_v2/segment_iterator.cpp:
##########
@@ -935,13 +937,22 @@ Status SegmentIterator::next_batch(vectorized::Block* 
block) {
                 _current_return_columns[cid]->reserve(_opts.block_row_max);
             }
         }
+        //count non predicate column size
+        for (auto cid : _non_predicate_columns) {
+            return_column_row_length += _schema.column(cid)->length();
+        }
+        // the size of a block: no more than 64M
+        constexpr uint32_t max_block_size = 1024 * 64;

Review Comment:
   应该是64M,写错了



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to