volatiletech / sqlboiler

Generate a Go ORM tailored to your database schema.
BSD 3-Clause "New" or "Revised" License
6.56k stars 533 forks source link

Implement (Un-)marshalText for Decimal and NullDecimal #1380

Closed MJacred closed 2 months ago

MJacred commented 2 months ago

UnmarshalText is required for parsing a text/csv file. Without, the code uses decimal directly and ends in a nil pointer exception because decimal.Big is nil on scan

MJacred commented 2 months ago

@stephenafamo, please have a look. Thanks!