Standardize casing for NULL in error messages
This commit is contained in:
+1
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user