diff --git a/fragment.go b/fragment.go index 4758f18e8..2b923507b 100644 --- a/fragment.go +++ b/fragment.go @@ -272,8 +272,8 @@ func (f *Fragment) openCache() error { // Read in all rows by ID. // This will cause them to be added to the cache. for _, id := range pb.IDs { - //n := f.storage.CountRange(id*SliceWidth, (id+1)*SliceWidth) - n := f.row(id, true, true).Count() + n := f.storage.CountRange(id*SliceWidth, (id+1)*SliceWidth) + //n := f.row(id, true, true).Count() f.cache.BulkAdd(id, n) } f.cache.Invalidate()