Fix Err fallout for graph/mongo iterator
This commit is contained in:
parent
5efd90a651
commit
bd2b2b73cf
1 changed files with 6 additions and 0 deletions
|
|
@ -39,6 +39,7 @@ type Iterator struct {
|
|||
constraint bson.M
|
||||
collection string
|
||||
result graph.Value
|
||||
err error
|
||||
}
|
||||
|
||||
func NewIterator(qs *QuadStore, collection string, d quad.Direction, val graph.Value) *Iterator {
|
||||
|
|
@ -137,6 +138,7 @@ func (it *Iterator) Next() bool {
|
|||
if !found {
|
||||
err := it.iter.Err()
|
||||
if err != nil {
|
||||
it.err = err
|
||||
glog.Errorln("Error Nexting Iterator: ", err)
|
||||
}
|
||||
return false
|
||||
|
|
@ -148,6 +150,10 @@ func (it *Iterator) Next() bool {
|
|||
return true
|
||||
}
|
||||
|
||||
func (it *Iterator) Err() error {
|
||||
return it.err
|
||||
}
|
||||
|
||||
func (it *Iterator) ResultTree() *graph.ResultTree {
|
||||
return graph.NewResultTree(it.Result())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue