This commit is contained in:
Lanre Ade 2024-04-08 23:47:21 +00:00 committed by GitHub
commit a7f8d8f947
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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