Skip to content

Commit

Permalink
Update to try to iterate all the blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
paul1r committed Jan 14, 2024
1 parent 84da5f6 commit 6847e4b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkg/storage/bloom/v1/reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,17 @@ func TestReadingAllLocalFilesAndDoMoreWithSeries(t *testing.T) {
fmt.Printf("made merge builder\n")
_, _ = mergeBlockBuilder.MergeBuild(mergeBuilder)
fmt.Printf("did merge build\n")
for i, itr := range blockIters {
fmt.Printf("Block %d, file %s\n", i, files[i])

}
for itr.Next() {
{
itr.At()
}
}

}
}
func createPopulateFunc() func(series *Series, bloom *Bloom) error {
return func(series *Series, bloom *Bloom) error {
return nil
Expand Down

0 comments on commit 6847e4b

Please sign in to comment.