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


##########
be/src/olap/rowset/segment_v2/segment.cpp:
##########
@@ -158,7 +158,8 @@ Status Segment::new_iterator(const Schema& schema, const 
StorageReadOptions& rea
     } else {
         iter->reset(new SegmentIterator(this->shared_from_this(), schema));
     }
-    return iter->get()->init(read_options);
+
+    return iter->init(read_options);

Review Comment:
   warning: no member named 'init' in 'std::unique_ptr<doris::RowwiseIterator>' 
[clang-diagnostic-error]
   ```cpp
       return iter->init(read_options);
                    ^
   ```
   



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