()
| 1606 | } |
| 1607 | |
| 1608 | func (j *LeftJoinIterator) Close() { |
| 1609 | for _, i := range j.required { |
| 1610 | i.Close() |
| 1611 | } |
| 1612 | for _, i := range j.optional { |
| 1613 | i.Close() |
| 1614 | } |
| 1615 | j.collector.Close() |
| 1616 | } |
| 1617 | |
| 1618 | // UnionIterator produces all results for all given iterators. When iterators |
| 1619 | // align to the same row, based on the configured definition level, then the results |
no test coverage detected