mirror of https://github.com/jackc/pgx.git
Explain seemingly redundant rows.Close() in CollectOneRow
fixes https://github.com/jackc/pgx/issues/2282pull/2288/head
parent
70c9a147a2
commit
05fe5f8b05
2
rows.go
2
rows.go
|
@ -473,6 +473,8 @@ func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
|||
return value, err
|
||||
}
|
||||
|
||||
// The defer rows.Close() won't have executed yet. If the query returned more than one row, rows would still be open.
|
||||
// rows.Close() must be called before rows.Err() so we explicitly call it here.
|
||||
rows.Close()
|
||||
return value, rows.Err()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue