You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the ADO.NET wrapper for ADBC converts decimal128 to System.Decimal with a fallback to string if the value is out-of-range. This doesn't seem great. It would be better to either return SqlDecimal for specific values of precision and scale or to have the fallback be to SqlDecimal instead of string.
This PR:
- Adds support for SqlDecimal for Decimal128 (follow up to
apache/arrow#38481)
- Treats Decimal256 values as string (follow up to
apache/arrow#38508)
- Adds a new DecimalBehavior to the Client to allow the caller to
determine how to treat decimal values
- Standardizes the test frameworks to Xunit
Addresses #1230
---------
Co-authored-by: David Coe <coedavid@umich.edu>
This PR:
- Adds support for SqlDecimal for Decimal128 (follow up to
apache/arrow#38481)
- Treats Decimal256 values as string (follow up to
apache/arrow#38508)
- Adds a new DecimalBehavior to the Client to allow the caller to
determine how to treat decimal values
- Standardizes the test frameworks to Xunit
Addresses apache#1230
---------
Co-authored-by: David Coe <coedavid@umich.edu>
vleslief-ms
pushed a commit
to vleslief-ms/arrow-adbc
that referenced
this issue
Nov 15, 2023
This PR:
- Adds support for SqlDecimal for Decimal128 (follow up to
apache/arrow#38481)
- Treats Decimal256 values as string (follow up to
apache/arrow#38508)
- Adds a new DecimalBehavior to the Client to allow the caller to
determine how to treat decimal values
- Standardizes the test frameworks to Xunit
Addresses apache#1230
---------
Co-authored-by: David Coe <coedavid@umich.edu>
Currently, the ADO.NET wrapper for ADBC converts decimal128 to System.Decimal with a fallback to string if the value is out-of-range. This doesn't seem great. It would be better to either return SqlDecimal for specific values of precision and scale or to have the fallback be to SqlDecimal instead of string.
Depends on apache/arrow#38351
The text was updated successfully, but these errors were encountered: