This commit is contained in:
Sofya Mikhaylova 2024-04-04 01:26:49 +00:00 committed by GitHub
commit 3caef40ace
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1834,6 +1834,11 @@ func (d Decimal) Value() (driver.Value, error) {
return d.String(), nil return d.String(), nil
} }
// Decimal returns a pointer to struct
func (d Decimal) Ptr() *Decimal {
return &d
}
// UnmarshalText implements the encoding.TextUnmarshaler interface for XML // UnmarshalText implements the encoding.TextUnmarshaler interface for XML
// deserialization. // deserialization.
func (d *Decimal) UnmarshalText(text []byte) error { func (d *Decimal) UnmarshalText(text []byte) error {