kaijchen commented on code in PR #35524: URL: https://github.com/apache/doris/pull/35524#discussion_r1616843271
########## be/src/olap/memtable.h: ########## @@ -231,6 +231,7 @@ class MemTable { void _init_columns_offset_by_slot_descs(const std::vector<SlotDescriptor*>* slot_descs, const TupleDescriptor* tuple_desc); std::vector<int> _column_offset; + bool _column_match = true; Review Comment: ```suggestion // Wheather columns in input block matches with columns in tablet. // Usually `true` for base tables, `false` for materialized views. // This field will be set during `_init_columns_offset_by_slot_descs`. bool _column_match = true; ``` -- 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