mrhhsg commented on code in PR #63389: URL: https://github.com/apache/doris/pull/63389#discussion_r3456622799
########## be/src/storage/segment/segment_iterator.h: ########## @@ -73,6 +73,12 @@ class InvertedIndexIterator; class RowRanges; class IndexIterator; +Status rebind_storage_exprs_to_reader_schema(const StorageReadOptions& opts, const Schema& schema, + const VExprContextSPtrs& common_exprs, + std::map<ColumnId, VExprContextSPtr>& virtual_exprs); + +bool storage_expr_slots_match_reader_schema(const StorageReadOptions& read_options); Review Comment: 就是可能存在表达式里面的 slot id 和实际读取的 block 没有对齐的情况,参考: https://github.com/apache/doris/pull/64413 -- 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]
