diff --git a/src/NullSupport.go b/src/NullSupport.go index 53f0341..478c0c4 100644 --- a/src/NullSupport.go +++ b/src/NullSupport.go @@ -58,7 +58,7 @@ func (s *NullString) Scan(value interface{}) error { } strVal, ok := value.(string) if !ok { - return errors.New("Column is not a string") + return errors.New("Value is not a string") } *s = NullString(strVal) return nil