(ctx context.Context)
| 191 | } |
| 192 | |
| 193 | func (ins *inserter) QueryRowContext(ctx context.Context) (*sql.Row, error) { |
| 194 | iq, err := ins.build() |
| 195 | if err != nil { |
| 196 | return nil, err |
| 197 | } |
| 198 | return ins.SQL().sess.StatementQueryRow(ctx, iq.statement(), iq.arguments...) |
| 199 | } |
| 200 | |
| 201 | func (ins *inserter) Iterator() db.Iterator { |
| 202 | return ins.IteratorContext(ins.SQL().sess.Context()) |
no test coverage detected