(ctx context.Context)
| 179 | } |
| 180 | |
| 181 | func (ins *inserter) QueryContext(ctx context.Context) (*sql.Rows, error) { |
| 182 | iq, err := ins.build() |
| 183 | if err != nil { |
| 184 | return nil, err |
| 185 | } |
| 186 | return ins.SQL().sess.StatementQuery(ctx, iq.statement(), iq.arguments...) |
| 187 | } |
| 188 | |
| 189 | func (ins *inserter) QueryRow() (*sql.Row, error) { |
| 190 | return ins.QueryRowContext(ins.SQL().sess.Context()) |
no test coverage detected