MCPcopy Create free account
hub / github.com/apache/impala / ReleaseBytes

Method ReleaseBytes

be/src/util/dict-encoding.h:330–335  ·  view source on GitHub ↗

Function to decrement the byte counter and decrease the bytes usage of the memory tracker.

Source from the content-addressed store, hash-verified

328 /// Function to decrement the byte counter and decrease the bytes usage
329 /// of the memory tracker.
330 void ReleaseBytes() {
331 if (dict_mem_tracker_ != nullptr) {
332 dict_mem_tracker_->Release(dict_bytes_cnt_);
333 dict_bytes_cnt_ = 0;
334 }
335 }
336
337 /// Function to increment the byte counter and increase the bytes usage
338 /// of the memory tracker.

Callers

nothing calls this directly

Calls 1

ReleaseMethod · 0.45

Tested by

no test coverage detected