csun5285 commented on code in PR #48392: URL: https://github.com/apache/doris/pull/48392#discussion_r1972680918
########## be/src/olap/rowset/segment_v2/segment.cpp: ########## @@ -616,6 +616,10 @@ Status Segment::_create_column_readers(const SegmentFooterPB& footer) { std::unordered_map<int32_t, uint32_t> column_id_to_footer_ordinal; uint32_t ordinal = 0; for (const auto& column_meta : _footer_pb->columns()) { + // no need to create column reader for variant's subcolumn + if (column_meta.unique_id() == -1 && column_meta.has_column_path_info()) { Review Comment: ok -- 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