| 72 | } |
| 73 | |
| 74 | type copyFromFunc struct { |
| 75 | next func() ([]any, error) |
| 76 | valueRow []any |
| 77 | err error |
| 78 | } |
| 79 | |
| 80 | func (g *copyFromFunc) Next() bool { |
| 81 | g.valueRow, g.err = g.next() |
nothing calls this directly
no outgoing calls
no test coverage detected