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.
pull/783/head
Jack Christensen 2020-06-06 10:39:33 -05:00
parent 4e50623069
commit 2758cbc0c4
1 changed files with 1 additions and 1 deletions

View File

@ -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: