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
Columns of type DECIMAL in the database should be kept DECIMAL in arrow/polars instead of being converted to FLOAT/DOUBLE.
Motivation: when porting existing code from MSSQL to polars/duckdb, I expected the rewrite to produce the exact same results, but float/decimal differences prevented this from happening. I had to cast back to decimal in duckdb manually.
Currently
DECIMAL is defined in multiple source typesystems (for example, mssql)
Describe your feature request
Columns of type
DECIMAL
in the database should be keptDECIMAL
in arrow/polars instead of being converted toFLOAT
/DOUBLE
.Motivation: when porting existing code from MSSQL to polars/duckdb, I expected the rewrite to produce the exact same results, but float/decimal differences prevented this from happening. I had to cast back to decimal in duckdb manually.
Currently
The text was updated successfully, but these errors were encountered: