2
0

Add the type of the value in all decode error messages

This commit is contained in:
Damir Vandic
2018-06-04 21:02:20 +02:00
parent 3ec4c6ca23
commit 79ba0275de
33 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ func (src *Float4Array) AssignTo(dst interface{}) error {
return NullAssignTo(dst)
}
return errors.Errorf("cannot decode %v into %T", src, dst)
return errors.Errorf("cannot decode %#v into %T", src, dst)
}
func (dst *Float4Array) DecodeText(ci *ConnInfo, src []byte) error {