Skip to content

Commit

Permalink
Merge pull request #9119 from yudai/panic_defrag_fail
Browse files Browse the repository at this point in the history
mvcc: check null before set FillPercent not to panic
  • Loading branch information
gyuho authored Jan 8, 2018
2 parents 44e1f6f + 0b1b82a commit a1d3456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mvcc/backend/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ func defragdb(odb, tmpdb *bolt.DB, limit int) error {
}

tmpb, berr := tmptx.CreateBucketIfNotExists(next)
tmpb.FillPercent = 0.9 // for seq write in for each
if berr != nil {
return berr
}
tmpb.FillPercent = 0.9 // for seq write in for each

b.ForEach(func(k, v []byte) error {
count++
Expand Down

0 comments on commit a1d3456

Please sign in to comment.