(ctx context.Context, sql string, args ...any)
| 14 | type Pool interface { |
| 15 | Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) |
| 16 | QueryRow(ctx context.Context, sql string, args ...any) pgx.Row |
| 17 | Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) |
| 18 | Ping(ctx context.Context) error |
| 19 | Acquire(ctx context.Context) (*pgxpool.Conn, error) |
no outgoing calls
no test coverage detected