[enhancement] Refactor to improve the usability of MemTracker (step2) (#10823)

This commit is contained in:
Xinyi Zou
2022-07-21 17:11:28 +08:00
committed by GitHub
parent 5f6f35e886
commit 4960043f5e
316 changed files with 2145 additions and 4369 deletions

View File

@ -71,7 +71,7 @@ Status ExportSink::prepare(RuntimeState* state) {
SCOPED_TIMER(_profile->total_time_counter());
// Prepare the exprs to run.
RETURN_IF_ERROR(Expr::prepare(_output_expr_ctxs, state, _row_desc, _expr_mem_tracker));
RETURN_IF_ERROR(Expr::prepare(_output_expr_ctxs, state, _row_desc));
// TODO(lingbin): add some Counter
_bytes_written_counter = ADD_COUNTER(profile(), "BytesExported", TUnit::BYTES);