| 112 | } |
| 113 | |
| 114 | type lazyRowIterator struct { |
| 115 | rs ResultSet |
| 116 | err error |
| 117 | chk *chunk.Chunk |
| 118 | idxInChk int |
| 119 | started bool |
| 120 | } |
| 121 | |
| 122 | func (iter *lazyRowIterator) Next(ctx context.Context) chunk.Row { |
| 123 | if !iter.started { |
nothing calls this directly
no outgoing calls
no test coverage detected