(args []driver.Value)
| 248 | } |
| 249 | |
| 250 | func (s *impersonatedStmt) Query(args []driver.Value) (driver.Rows, error) { |
| 251 | return s.db.QueryContext(context.Background(), s.query, convertOldArgs(args)) |
| 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) |
nothing calls this directly
no test coverage detected