(ctx context.Context, query string, args ...interface{})
| 100 | } |
| 101 | |
| 102 | func (r runnerDB) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) { |
| 103 | r.mx.Lock() |
| 104 | defer r.mx.Unlock() |
| 105 | return r.db.QueryContext(ctx, query, args...) |
| 106 | } |
| 107 | |
| 108 | func (r runnerDB) QueryxContext(ctx context.Context, query string, args ...interface{}) (*sqlx.Rows, error) { |
| 109 | r.mx.Lock() |