mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
more cache miss bugs
This commit is contained in:
parent
f566296f7c
commit
afa42e1af0
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ func NewCount(bitmap_handle BitmapHandle) *CmdCount {
|
|||
func (self *CmdCount) Execute(f *Fragment) Calculation {
|
||||
bm, ok := f.getBitmap(self.bitmap)
|
||||
if ok == false {
|
||||
return 0
|
||||
return uint64(0)
|
||||
}
|
||||
return BitCount(bm)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue