Commit 26f2ced1 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 8a474010
...@@ -590,10 +590,13 @@ func (δFtail *ΔFtail) SliceByFileRev(zfile *ZBigFile, lo, hi zodb.Tid) /*reado ...@@ -590,10 +590,13 @@ func (δFtail *ΔFtail) SliceByFileRev(zfile *ZBigFile, lo, hi zodb.Tid) /*reado
// emit epoch δf // emit epoch δf
if ie >= 0 { if ie >= 0 {
δf := vδfTail(vδE[ie].Rev) epoch := vδE[ie].Rev
δf.Epoch = true if epoch > lo { // it could be <=
δf.Blocks = nil // XXX must be already nil δf := vδfTail(epoch)
δf.Size = false // XXX must be already false δf.Epoch = true
δf.Blocks = nil // XXX must be already nil
δf.Size = false // XXX must be already false
}
} }
} }
......
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