morningman commented on code in PR #10739: URL: https://github.com/apache/doris/pull/10739#discussion_r917398612
########## be/src/olap/memtable.cpp: ########## @@ -118,6 +118,19 @@ void MemTable::_init_agg_functions(const vectorized::Block* block) { } MemTable::~MemTable() { + if (_vec_skip_list != nullptr && _keys_type != KeysType::DUP_KEYS) { + VecTable::Iterator it(_vec_skip_list.get()); + for (it.SeekToFirst(); it.Valid(); it.Next()) { + // We should release agg_places here, because they are not relesed when a Review Comment: ```suggestion // We should release agg_places here, because they are not released when a ``` -- 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