This commit is contained in:
Lanre Ade 2024-03-17 16:40:34 +08:00 committed by GitHub
commit 98b69c0a5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1523,6 +1523,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) {