| 217 | } |
| 218 | |
| 219 | void initPool(const std::string& queryId) { |
| 220 | if (pool_ == nullptr) { |
| 221 | pool_ = memory::memoryManager()->addRootPool( |
| 222 | QueryCtx::generatePoolName(queryId), memory::kMaxMemory); |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | // Setup the memory reclaimer for arbitration if user provided memory pool |
| 227 | // hasn't set it. |
nothing calls this directly
no test coverage detected