Commit c6ee97d7 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent a1e6c63c
...@@ -593,16 +593,11 @@ func xverifyΔBTail1(t *testing.T, subj string, db *zodb.DB, treeRoot zodb.Oid, ...@@ -593,16 +593,11 @@ func xverifyΔBTail1(t *testing.T, subj string, db *zodb.DB, treeRoot zodb.Oid,
δToid := δB.ByRoot[treeRoot] // {} k -> oid δToid := δB.ByRoot[treeRoot] // {} k -> oid
δT = XGetKV(db, at2, δToid) // {} k -> ZBlk(oid).data δT = XGetKV(db, at2, δToid) // {} k -> ZBlk(oid).data
//fmt.Println("d12:", d12)
//fmt.Println("δT: ", δT)
// δT must be subset of d12. // δT must be subset of d12.
// changed keys, that are // changed keys, that are
// - in tracked set -> must be present in δT // - in tracked set -> must be present in δT
// - outside tracked set -> may be present in δT (kadj gives exact answer) // - outside tracked set -> may be present in δT (kadj gives exact answer)
// XXX use kadj - check exactly whether k is present in δT or not present
// δT is subset of d12 // δT is subset of d12
for k := range δT { for k := range δT {
_, ind12 := d12[k] _, ind12 := d12[k]
...@@ -629,7 +624,6 @@ func xverifyΔBTail1(t *testing.T, subj string, db *zodb.DB, treeRoot zodb.Oid, ...@@ -629,7 +624,6 @@ func xverifyΔBTail1(t *testing.T, subj string, db *zodb.DB, treeRoot zodb.Oid,
} }
} }
} }
} }
......
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