mirror of https://github.com/jackc/pgx.git
parent
0d14b87140
commit
91cba90e8d
6
rows.go
6
rows.go
|
@ -231,7 +231,11 @@ func (rows *baseRows) Scan(dest ...any) error {
|
||||||
|
|
||||||
if len(dest) == 1 {
|
if len(dest) == 1 {
|
||||||
if rc, ok := dest[0].(RowScanner); ok {
|
if rc, ok := dest[0].(RowScanner); ok {
|
||||||
return rc.ScanRow(rows)
|
err := rc.ScanRow(rows)
|
||||||
|
if err != nil {
|
||||||
|
rows.fatal(err)
|
||||||
|
}
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
16
rows_test.go
16
rows_test.go
|
@ -36,6 +36,22 @@ func TestRowScanner(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type testErrRowScanner string
|
||||||
|
|
||||||
|
func (ers *testErrRowScanner) ScanRow(rows pgx.Rows) error {
|
||||||
|
return errors.New(string(*ers))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRowScannerErrorIsFatalToRows(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
|
||||||
|
s := testErrRowScanner("foo")
|
||||||
|
err := conn.QueryRow(ctx, "select 'Adam' as name, 72 as height").Scan(&s)
|
||||||
|
require.EqualError(t, err, "foo")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func TestForEachRow(t *testing.T) {
|
func TestForEachRow(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue