| 62 | } |
| 63 | |
| 64 | type countingRecordReader struct { |
| 65 | records [][]string |
| 66 | index int |
| 67 | reads atomic.Int32 |
| 68 | } |
| 69 | |
| 70 | func newCountingRecordReader(records [][]string) *countingRecordReader { |
| 71 | return &countingRecordReader{records: records} |
nothing calls this directly
no outgoing calls
no test coverage detected