(args []driver.Value)
| 244 | } |
| 245 | |
| 246 | func (s *impersonatedStmt) Exec(args []driver.Value) (driver.Result, error) { |
| 247 | return s.db.ExecContext(context.Background(), s.query, convertOldArgs(args)) |
| 248 | } |
| 249 | |
| 250 | func (s *impersonatedStmt) Query(args []driver.Value) (driver.Rows, error) { |
| 251 | return s.db.QueryContext(context.Background(), s.query, convertOldArgs(args)) |
nothing calls this directly
no test coverage detected