mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-09 22:51:02 +00:00
missed one
This commit is contained in:
parent
0f3d26bd30
commit
4ceaed5316
1 changed files with 1 additions and 1 deletions
|
|
@ -1159,7 +1159,7 @@ func BenchmarkContainerLinear(b *testing.B) {
|
|||
func BenchmarkContainerReverse(b *testing.B) {
|
||||
for n := 0; n < b.N; n++ {
|
||||
bm := roaring.NewBitmap()
|
||||
for row := NumRows; row > 0; row-- {
|
||||
for row := NumRows - 1; row > 0; row-- {
|
||||
for col := NumColums; col > 0; col-- {
|
||||
bm.Add(row*pilosa.SliceWidth + (col * MaxContainerVal))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue