[Enhance] Improve the readability of memtrackers' name (#5455)

Improve the readability of memtrackers' name, then you will be happy to read website be_ip:port/mem_tracker
This commit is contained in:
Yingchun Lai
2021-03-11 22:33:31 +08:00
committed by GitHub
parent e5c7a6dd9f
commit 0131c33966
33 changed files with 78 additions and 43 deletions

View File

@ -40,7 +40,9 @@
namespace doris {
DataSpliter::DataSpliter(const RowDescriptor& row_desc)
: _obj_pool(new ObjectPool()), _row_desc(row_desc) {}
: _obj_pool(new ObjectPool()), _row_desc(row_desc) {
_name = "DataSpliter";
}
DataSpliter::~DataSpliter() {}