Compare commits

...

2 commits

Author SHA1 Message Date
Lanre Ade
98b69c0a5f
Merge a3267013b7 into d00399e161 2024-03-17 16:40:34 +08:00
Lanre Ade
a3267013b7 Update decimal.go 2019-03-03 16:41:08 -07:00

View file

@ -1523,6 +1523,11 @@ func (d Decimal) MarshalBinary() (data []byte, err error) {
// Scan implements the sql.Scanner interface for database deserialization.
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
switch v := value.(type) {