[enhancement](memtracker) Improve readability (#15716)
This commit is contained in:
@ -193,7 +193,6 @@ Status VSetOperationNode<is_intersect>::open(RuntimeState* state) {
|
||||
START_AND_SCOPE_SPAN(state->get_tracer(), span, "VSetOperationNode<is_intersect>::open");
|
||||
SCOPED_TIMER(_runtime_profile->total_time_counter());
|
||||
RETURN_IF_ERROR(ExecNode::open(state));
|
||||
SCOPED_CONSUME_MEM_TRACKER(mem_tracker_growh());
|
||||
|
||||
// TODO: build the hash table in a thread to open other children asynchronously.
|
||||
RETURN_IF_ERROR(hash_table_build(state));
|
||||
@ -234,7 +233,6 @@ template <bool is_intersect>
|
||||
Status VSetOperationNode<is_intersect>::prepare(RuntimeState* state) {
|
||||
SCOPED_TIMER(_runtime_profile->total_time_counter());
|
||||
RETURN_IF_ERROR(ExecNode::prepare(state));
|
||||
SCOPED_CONSUME_MEM_TRACKER(mem_tracker_growh());
|
||||
_build_timer = ADD_TIMER(runtime_profile(), "BuildTime");
|
||||
_probe_timer = ADD_TIMER(runtime_profile(), "ProbeTime");
|
||||
_pull_timer = ADD_TIMER(runtime_profile(), "PullTime");
|
||||
|
||||
Reference in New Issue
Block a user