Skip to content

Commit 3c0efd7

Browse files
Make PostgresRowSequence.collect public (#281)
Fixes #279
1 parent def4fe8 commit 3c0efd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/PostgresNIO/New/PostgresRowSequence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ extension AsyncStreamConsumer {
531531
}
532532

533533
extension PostgresRowSequence {
534-
func collect() async throws -> [PostgresRow] {
534+
public func collect() async throws -> [PostgresRow] {
535535
var result = [PostgresRow]()
536536
for try await row in self {
537537
result.append(row)

0 commit comments

Comments
 (0)