mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Merge pull request #125 from benbjohnson/123-fix-clear-bit-return
Handle return data from remote ClearBit()
This commit is contained in:
commit
8d27ae9c15
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