Standardize casing for NULL in error messages
This commit is contained in:
@@ -85,7 +85,7 @@ type scanPlanTextAnyToEnumString struct {
|
||||
|
||||
func (plan *scanPlanTextAnyToEnumString) 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)
|
||||
}
|
||||
|
||||
p := (dst).(*string)
|
||||
|
||||
Reference in New Issue
Block a user