mvcc: do not hash consistent index

This commit is contained in:
Xiang Li
2016-06-28 08:49:44 -07:00
committed by Gyu-Ho Lee
parent 8bbccf1047
commit 269de67bde
4 changed files with 29 additions and 14 deletions

View File

@ -141,7 +141,7 @@ func TestBackendDefrag(t *testing.T) {
size := b.Size()
// shrink and check hash
oh, err := b.Hash()
oh, err := b.Hash(nil)
if err != nil {
t.Fatal(err)
}
@ -151,7 +151,7 @@ func TestBackendDefrag(t *testing.T) {
t.Fatal(err)
}
nh, err := b.Hash()
nh, err := b.Hash(nil)
if err != nil {
t.Fatal(err)
}