(ctx context.Context, sql string, arguments ...any)
| 22 | |
| 23 | type execer interface { |
| 24 | Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) |
| 25 | } |
| 26 | |
| 27 | func testExec(t *testing.T, ctx context.Context, db execer) { |
no outgoing calls