This adds a new DecimalConverter class that works with arbitrary length fixed-length byte array columns (as long as values are still representable by a .NET decimal), while keeping the existing Decimal128 class for backwards compatibility and improved performance. I've also added support for writing decimal columns backed by the int32 and int64 physical types.
Fixes #252
This adds a new
DecimalConverter
class that works with arbitrary length fixed-length byte array columns (as long as values are still representable by a .NET decimal), while keeping the existingDecimal128
class for backwards compatibility and improved performance. I've also added support for writing decimal columns backed by the int32 and int64 physical types.