We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3e6f1 commit fe9171dCopy full SHA for fe9171d
sql/pgxpool/service.go
@@ -2,7 +2,6 @@ package pgxpool
2
3
import (
4
"context"
5
- "database/sql"
6
"github.com/jackc/pgx/v5"
7
"github.com/jackc/pgx/v5/pgconn"
8
"github.com/jackc/pgx/v5/pgxpool"
@@ -31,7 +30,7 @@ type (
31
30
query *string,
32
params ...interface{},
33
) pgx.Row
34
- ScanRow(row *sql.Row, destinations ...interface{}) error
+ ScanRow(row pgx.Row, destinations ...interface{}) error
35
}
36
37
// DefaultService is the default service struct
0 commit comments