(ctx context.Context, query string, args ...interface{})
| 68 | } |
| 69 | |
| 70 | func (c *wrapperConnPool) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) { |
| 71 | c.got = append(c.got, query) |
| 72 | return c.db.ExecContext(ctx, query, args...) |
| 73 | } |
| 74 | |
| 75 | func (c *wrapperConnPool) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) { |
| 76 | c.got = append(c.got, query) |
nothing calls this directly
no test coverage detected