From afa42e1af05ebb79366981a0ab5fcbc3b013116d Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Tue, 2 Dec 2014 20:57:23 +0000 Subject: [PATCH] more cache miss bugs --- index/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index/commands.go b/index/commands.go index eae3c791e..f91cb6a24 100644 --- a/index/commands.go +++ b/index/commands.go @@ -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) }