mirror of https://github.com/jackc/pgx.git
Fix behavior of CollectRows to return empty slice if Rows are empty
https://github.com/jackc/pgx/issues/1924pull/1927/head
parent
88dfc22ae4
commit
c1b0a01ca7
2
rows.go
2
rows.go
|
@ -438,7 +438,7 @@ func AppendRows[T any, S ~[]T](slice S, rows Rows, fn RowToFunc[T]) (S, error) {
|
||||||
|
|
||||||
// CollectRows iterates through rows, calling fn for each row, and collecting the results into a slice of T.
|
// CollectRows iterates through rows, calling fn for each row, and collecting the results into a slice of T.
|
||||||
func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
|
func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
|
||||||
return AppendRows([]T(nil), rows, fn)
|
return AppendRows([]T{}, rows, fn)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CollectOneRow calls fn for the first row in rows and returns the result. If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
// CollectOneRow calls fn for the first row in rows and returns the result. If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
||||||
|
|
Loading…
Reference in New Issue