mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
formatting
This commit is contained in:
parent
374fc9deff
commit
15494becac
1 changed files with 2 additions and 2 deletions
|
|
@ -46,14 +46,14 @@ func TestSize(t *testing.T) {
|
|||
|
||||
//bitmap
|
||||
b := roaring.NewFileBitmap()
|
||||
for i:=uint64(0);i<2048;i++{
|
||||
for i := uint64(0); i < 2048; i++ {
|
||||
b.DirectAdd(i)
|
||||
}
|
||||
|
||||
if b.Size() != 4096 {
|
||||
t.Fatalf("Size in bytes incorrect \n")
|
||||
}
|
||||
//convert to rle
|
||||
//convert to rle
|
||||
b.Optimize()
|
||||
//rle
|
||||
if b.Size() != 6 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue