(ctx context.Context, query string, args ...interface{})
| 23 | } |
| 24 | |
| 25 | func (c *wrapperTx) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) { |
| 26 | c.conn.got = append(c.conn.got, query) |
| 27 | return c.Tx.ExecContext(ctx, query, args...) |
| 28 | } |
| 29 | |
| 30 | func (c *wrapperTx) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) { |
| 31 | c.conn.got = append(c.conn.got, query) |
nothing calls this directly
no test coverage detected