(b []pq.Value)
| 299 | } |
| 300 | |
| 301 | func syncIteratorPoolPut(b []pq.Value) { |
| 302 | for i := range b { |
| 303 | b[i] = pq.Value{} |
| 304 | } |
| 305 | syncIteratorPool.Put(b) // nolint: staticcheck |
| 306 | } |
| 307 | |
| 308 | type JoinIteratorOption interface { |
| 309 | applyToJoinIterator(*JoinIterator) |
no test coverage detected