From 2bf760b9b4d71d3b67c5489d2c46bfa04d4629f9 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Thu, 30 Jul 2026 23:48:18 +0200 Subject: add full implementation --- results.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'results.go') diff --git a/results.go b/results.go index 510bb08..bf0d0be 100644 --- a/results.go +++ b/results.go @@ -31,7 +31,7 @@ func (r wrappedRows) Columns() ([]string, error) { // Close implements the [gsql.Rows] interface. func (r wrappedRows) Close() error { r.inner.Close() - return nil + return r.inner.Err() } // Err implements the [gsql.Rows] interface. -- cgit v1.3.1