2
0

Improve stdlib performance with large results

This commit is contained in:
Jack Christensen
2020-06-06 09:49:14 -05:00
parent 73d0ac206c
commit 81140f6c27
4 changed files with 147 additions and 108 deletions
+1 -1
View File
@@ -206,7 +206,7 @@ func (rows *connRows) Scan(dest ...interface{}) error {
if dst == nil {
continue
}
rows.scanPlans[i] = ci.PlanScan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], dest[i])
rows.scanPlans[i] = ci.PlanScan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, dest[i])
}
}