mirror of https://github.com/jackc/pgx.git
parent
922508c785
commit
8ad672475a
8
rows.go
8
rows.go
|
@ -221,7 +221,7 @@ func (rows *connRows) Scan(dest ...interface{}) error {
|
||||||
|
|
||||||
err := rows.scanPlans[i].Scan(ci, fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], dst)
|
err := rows.scanPlans[i].Scan(ci, fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], dst)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = scanArgError{col: i, err: err}
|
err = ScanArgError{col: i, err: err}
|
||||||
rows.fatal(err)
|
rows.fatal(err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -306,12 +306,12 @@ func (rows *connRows) RawValues() [][]byte {
|
||||||
return rows.values
|
return rows.values
|
||||||
}
|
}
|
||||||
|
|
||||||
type scanArgError struct {
|
type ScanArgError struct {
|
||||||
col int
|
col int
|
||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e scanArgError) Error() string {
|
func (e ScanArgError) Error() string {
|
||||||
return fmt.Sprintf("can't scan into dest[%d]: %v", e.col, e.err)
|
return fmt.Sprintf("can't scan into dest[%d]: %v", e.col, e.err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -336,7 +336,7 @@ func ScanRow(connInfo *pgtype.ConnInfo, fieldDescriptions []pgproto3.FieldDescri
|
||||||
|
|
||||||
err := connInfo.Scan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], d)
|
err := connInfo.Scan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], d)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return scanArgError{col: i, err: err}
|
return ScanArgError{col: i, err: err}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue