mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 18:02:25 -05:00
[chore]: Bump github.com/jackc/pgx/v5 from 5.4.1 to 5.4.2 (#1991)
This commit is contained in:
parent
83139989b5
commit
fa57c699fe
17 changed files with 119 additions and 476 deletions
6
vendor/github.com/jackc/pgx/v5/rows.go
generated
vendored
6
vendor/github.com/jackc/pgx/v5/rows.go
generated
vendored
|
|
@ -231,7 +231,11 @@ func (rows *baseRows) Scan(dest ...any) error {
|
|||
|
||||
if len(dest) == 1 {
|
||||
if rc, ok := dest[0].(RowScanner); ok {
|
||||
return rc.ScanRow(rows)
|
||||
err := rc.ScanRow(rows)
|
||||
if err != nil {
|
||||
rows.fatal(err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue