(ctx context.Context, args []driver.NamedValue)
| 252 | } |
| 253 | |
| 254 | func (s *impersonatedStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) { |
| 255 | return s.db.ExecContext(ctx, s.query, args) |
| 256 | } |
| 257 | |
| 258 | func (s *impersonatedStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { |
| 259 | return s.db.QueryContext(ctx, s.query, args) |
nothing calls this directly
no test coverage detected