This commit is contained in:
Sofya Mikhaylova 2024-01-24 20:44:47 -07:00 committed by GitHub
commit 3f2b8ba52e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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