| 5171 | |
| 5172 | |
| 5173 | void BufferControl::destroy(BufferControl* bcb) |
| 5174 | { |
| 5175 | Database* const dbb = bcb->bcb_database; |
| 5176 | MemoryPool* const pool = bcb->bcb_bufferpool; |
| 5177 | MemoryStats temp_stats; |
| 5178 | pool->setStatsGroup(temp_stats); |
| 5179 | delete bcb; |
| 5180 | dbb->deletePool(pool); |
| 5181 | } |
| 5182 | |
| 5183 | |
| 5184 | bool BufferDesc::addRef(thread_db* tdbb, SyncType syncType, int wait) |
nothing calls this directly
no test coverage detected