(t *testing.T, conn *sql.Conn, q driver.Query, ports *DynamicResources)
| 622 | } |
| 623 | |
| 624 | func RunQuery(t *testing.T, conn *sql.Conn, q driver.Query, ports *DynamicResources) { |
| 625 | RetryTestRun(t, q.RetryAttempts, func(t TestingT) { |
| 626 | RunQueryAttempt(t, conn, q, ports) |
| 627 | }) |
| 628 | } |
| 629 | |
| 630 | func RunQueryAttempt(t TestingT, conn *sql.Conn, q driver.Query, ports *DynamicResources) { |
| 631 | args := make([]any, len(q.Args)) |
no test coverage detected