mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 07:11:02 +00:00
provide an empty filter when a filter was empty
This commit is contained in:
parent
26326ac74c
commit
397d93e84b
1 changed files with 2 additions and 0 deletions
|
|
@ -1015,6 +1015,8 @@ func (e *executor) executeGenericFieldShard(ctx context.Context, index string, c
|
|||
filter = row
|
||||
if filter != nil && len(filter.segments) > 0 {
|
||||
filterBitmap = filter.segments[0].data
|
||||
} else {
|
||||
filterBitmap = roaring.NewFileBitmap()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue