mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
bug in difference
This commit is contained in:
parent
dafe954f8e
commit
aa9305ac8d
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ func (b *Bitmap) Difference(other *Bitmap) *Bitmap {
|
|||
if s0 == nil {
|
||||
continue
|
||||
} else if s1 == nil {
|
||||
segments = append(segments, *s1)
|
||||
segments = append(segments, *s0)
|
||||
continue
|
||||
}
|
||||
segments = append(segments, *s0.Difference(s1))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue