| 609 | } |
| 610 | |
| 611 | void BTreeDatabase::BTreeImpl::deleteIndex(Index index) { |
| 612 | parent->m_indexCache.remove(index->self); |
| 613 | parent->freeBlock(index->self); |
| 614 | } |
| 615 | |
| 616 | auto BTreeDatabase::BTreeImpl::createLeaf() -> Leaf { |
| 617 | auto leaf = make_shared<LeafNode>(); |
no test coverage detected