Check spill error in Commit

pull/34/head
Tommi Virtanen 2014-03-23 10:40:39 -07:00
parent bfb02aec20
commit cb896f6525
1 changed files with 3 additions and 1 deletions

4
tx.go
View File

@ -173,7 +173,9 @@ func (t *Tx) Commit() error {
// Rebalance and spill data onto dirty pages.
t.rebalance()
t.spill()
if err := t.spill(); err != nil {
return err
}
// Spill buckets page.
p, err := t.allocate((t.buckets.size() / t.db.pageSize) + 1)