(ctx context.Context)
| 203 | } |
| 204 | |
| 205 | func (ins *inserter) IteratorContext(ctx context.Context) db.Iterator { |
| 206 | rows, err := ins.QueryContext(ctx) |
| 207 | return &iterator{ins.SQL().sess, rows, err} |
| 208 | } |
| 209 | |
| 210 | func (ins *inserter) Into(table string) db.Inserter { |
| 211 | return ins.frame(func(iq *inserterQuery) error { |
no test coverage detected