From 6515e183ffa3c88ecb733edf94b5d0836acaaf8f Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 29 Oct 2022 08:59:57 -0500 Subject: [PATCH] Update doc example for pgx.ForEachRow fixes https://github.com/jackc/pgx/issues/1360 --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index 430f16ed..fb271874 100644 --- a/doc.go +++ b/doc.go @@ -40,7 +40,7 @@ directly. var sum, n int32 rows, _ := conn.Query(context.Background(), "select generate_series(1,$1)", 10) - _, err := pgx.ForEachRow(rows, []any{&n}, func(pgx.QueryFuncRow) error { + _, err := pgx.ForEachRow(rows, []any{&n}, func() error { sum += n return nil })