Merge pull request #24 from heyitsanthony/node-gap

Avoid allocate a hole page, when the node size equals to pageSize
pull/28/head
Anthony Romano 2017-08-11 13:25:33 -07:00 committed by GitHub
commit dd1d5a7cbd
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ func (n *node) spill() error {
}
// Allocate contiguous space for the node.
p, err := tx.allocate((node.size() / tx.db.pageSize) + 1)
p, err := tx.allocate((node.size() + tx.db.pageSize - 1) / tx.db.pageSize)
if err != nil {
return err
}