Commit d25f049b authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 9f07b5a3
......@@ -212,10 +212,12 @@ func xverifyΔBTail(t *testing.T, db *zodb.DB, treeRoot zodb.Oid, at1, at2 zodb.
return keyv1[i] < keyv1[j]
})
keyv1 = append(keyv1, 10000) // inf, simulating ZBigFile.Size() query
fmt.Println("keyv1:", keyv1)
for kidx := range IntSets(len(keyv1)) {
keys := make([]Key, len(kidx))
for _, i := range kidx {
keys[i] = keyv1[i]
fmt.Println("kidx:", kidx)
for i, idx := range kidx {
keys[i] = keyv1[idx]
}
xverifyΔBTail1(t, db, treeRoot, at1,at2, kv1,kv2, d12, δZ, keys)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment