(ctx context.Context)
| 21 | } |
| 22 | |
| 23 | func (d *deleteData) QueryContext(ctx context.Context) (*sql.Rows, error) { |
| 24 | if d.RunWith == nil { |
| 25 | return nil, RunnerNotSet |
| 26 | } |
| 27 | ctxRunner, ok := d.RunWith.(QueryerContext) |
| 28 | if !ok { |
| 29 | return nil, NoContextSupport |
| 30 | } |
| 31 | return QueryContextWith(ctx, ctxRunner, d) |
| 32 | } |
| 33 | |
| 34 | func (d *deleteData) QueryRowContext(ctx context.Context) RowScanner { |
| 35 | if d.RunWith == nil { |
nothing calls this directly
no test coverage detected