This commit is contained in:
Sofya Mikhaylova 2024-03-17 16:42:26 +08:00 committed by GitHub
commit 3d809ca6b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1557,6 +1557,11 @@ func (d Decimal) Value() (driver.Value, error) {
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
// deserialization.
func (d *Decimal) UnmarshalText(text []byte) error {