2
0

Standardize casing for NULL in error messages

This commit is contained in:
Jack Christensen
2022-08-22 20:58:22 -05:00
parent 2e73d1e8ee
commit fe3a4f3150
13 changed files with 69 additions and 69 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ type scanPlanBinaryUint32ToUint32 struct{}
func (scanPlanBinaryUint32ToUint32) Scan(src []byte, dst any) error {
if src == nil {
return fmt.Errorf("cannot scan null into %T", dst)
return fmt.Errorf("cannot scan NULL into %T", dst)
}
if len(src) != 4 {