From 2758cbc0c4fc00a7367adb12e82562d41284241f Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 6 Jun 2020 10:39:33 -0500 Subject: [PATCH] Remove unnecessary allocation in rows.Values() This was originally done to fix #386. But subsequent changes to pgtype render the allocation unnecessary. Tests put in place with the original fix still pass. --- rows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rows.go b/rows.go index adb6c878..c63f1d9b 100644 --- a/rows.go +++ b/rows.go @@ -243,7 +243,7 @@ func (rows *connRows) Values() ([]interface{}, error) { } if dt, ok := rows.connInfo.DataTypeForOID(fd.DataTypeOID); ok { - value := pgtype.NewValue(dt.Value) + value := dt.Value switch fd.Format { case TextFormatCode: