Closed pstalcup closed 10 months ago
Hi @pstalcup, on the latest version, the last three examples should return:
shape: (2, 1)
┌───────┐
│ a │
│ --- │
│ f64 │
╞═══════╡
│ 0.001 │
│ 0.001 │
└───────┘
The next release should also fix the data type:
shape: (2, 1)
┌──────────────┐
│ a │
│ --- │
│ decimal[*,3] │
╞══════════════╡
│ 0.001 │
│ 0.001 │
└──────────────┘
Thank you - I was able to update my version and verify that it was working correctly!
When constructing DataFrames using BigDecimal as inputs you get odd behavior depending on how you construct the DataFrame:
Using different schemas produces the same results
The Decimal type is marked as experimental, but I am surprised it is giving such incorrect results when I don't want the decimal type.