mirror of
https://github.com/apple/foundationdb.git
synced 2025-05-14 09:58:50 +08:00
tuple.Tuple needed to be deconstructed into TupleElement items before appending to key tuple
This commit is contained in:
parent
a074dc2a60
commit
832d8d5e8c
@ -210,7 +210,7 @@ func (doc Doc) GetDoc(trtr fdb.Transactor, doc_id int) interface{} {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
tuples = append(tuples, append(tup[1:len(tup)], _unpack(v.Value)))
|
||||
tuples = append(tuples, append(tup[1:len(tup)], _unpack(v.Value)...))
|
||||
}
|
||||
return nil, nil
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user