[refactor](memtable) remove unused stream output (#27889)

Co-authored-by: ziyang zhang <zhangziyang@stu.cdut.edu.cn>
This commit is contained in:
Ma1oneZhang
2023-12-05 11:10:10 +08:00
committed by GitHub
parent 3412a022f4
commit a06ac930a0

View File

@ -267,10 +267,4 @@ private:
int32_t _seq_col_idx_in_block = -1;
}; // class MemTable
inline std::ostream& operator<<(std::ostream& os, const MemTable& table) {
os << "MemTable(addr=" << &table << ", tablet=" << table.tablet_id()
<< ", mem=" << table.memory_usage();
return os;
}
} // namespace doris