()
| 199 | } |
| 200 | |
| 201 | func (ins *inserter) Iterator() db.Iterator { |
| 202 | return ins.IteratorContext(ins.SQL().sess.Context()) |
| 203 | } |
| 204 | |
| 205 | func (ins *inserter) IteratorContext(ctx context.Context) db.Iterator { |
| 206 | rows, err := ins.QueryContext(ctx) |
nothing calls this directly
no test coverage detected