Compare commits

...

2 commits

Author SHA1 Message Date
Lanre Ade
a7f8d8f947
Merge a3267013b7 into 80ec940054 2024-04-08 23:47:21 +00:00
Lanre Ade
a3267013b7 Update decimal.go 2019-03-03 16:41:08 -07:00

View file

@ -1829,6 +1829,11 @@ func (d Decimal) MarshalBinary() (data []byte, err error) {
// Scan implements the sql.Scanner interface for database deserialization. // Scan implements the sql.Scanner interface for database deserialization.
func (d *Decimal) Scan(value interface{}) error { func (d *Decimal) Scan(value interface{}) error {
if value == nil {
d = nil
return nil
}
// first try to see if the data is stored in database as a Numeric datatype // first try to see if the data is stored in database as a Numeric datatype
switch v := value.(type) { switch v := value.(type) {