Merge pull request #263 from barakmich/or_iterator_describe
Fix describe in Or iterator
This commit is contained in:
commit
e434e76d1e
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ func (it *Or) TagResults(dst map[string]graph.Value) {
|
|||
}
|
||||
|
||||
func (it *Or) Describe() graph.Description {
|
||||
var subIts []graph.Description
|
||||
subIts := make([]graph.Description, len(it.internalIterators))
|
||||
for i, sub := range it.internalIterators {
|
||||
subIts[i] = sub.Describe()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue