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: [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]