github-actions[bot] commented on code in PR #63780:
URL: https://github.com/apache/doris/pull/63780#discussion_r3315217083


##########
be/src/storage/segment/segment_iterator.cpp:
##########
@@ -3111,6 +3165,27 @@ Status SegmentIterator::_next_batch_internal(Block* 
block) {
                 }
             }
         }
+
+        if (!_deferred_nested_columns.empty()) {
+            SCOPED_RAW_TIMER(&_opts.stats->deferred_nested_read_ns);
+            DorisVector<rowid_t> rowids(_selected_size);
+            for (size_t i = 0; i < _selected_size; ++i) {

Review Comment:
   This new use of `DorisVector` needs a direct include of 
`core/custom_allocator.h` in this translation unit. `DorisVector` is only 
defined there, and `segment_iterator.cpp` does not currently include that 
header, so this should fail to compile when the deferred nested read code is 
built. Please add the include (or use `std::vector` here if the custom 
allocator is not required).



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