mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Handle return data from remote ClearBit()
Previously `ClearBit()` did not handle returned data correctly and panicked. This change adds it to the list of available return types.
This commit is contained in:
parent
b8b5cb0337
commit
aaf88563e3
1 changed files with 2 additions and 0 deletions
|
|
@ -695,6 +695,8 @@ func (e *Executor) exec(node *Node, db string, q *pql.Query, slices []uint64, op
|
|||
v, err = pb.Results[i].GetN(), nil
|
||||
case *pql.SetBit:
|
||||
v, err = pb.Results[i].GetChanged(), nil
|
||||
case *pql.ClearBit:
|
||||
v, err = pb.Results[i].GetChanged(), nil
|
||||
case *pql.SetBitmapAttrs:
|
||||
case *pql.SetProfileAttrs:
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue