(ctx context.Context)
| 397 | } |
| 398 | |
| 399 | func (it *iteratorContains) NextPath(ctx context.Context) bool { |
| 400 | if it.err != nil { |
| 401 | return false |
| 402 | } |
| 403 | if !it.query.nextPath { |
| 404 | return false |
| 405 | } |
| 406 | if !it.nextPathRows.Next() { |
| 407 | it.err = it.nextPathRows.Err() |
| 408 | return false |
| 409 | } |
| 410 | return it.scanValue(it.nextPathRows) |
| 411 | } |
| 412 | |
| 413 | func (it *iteratorContains) Close() error { |
| 414 | if it.nextPathRows != nil { |