Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
1.19.0
-
None
Description
When attempting to aggregate or filter an optional decimal column, that have null values stored in Parquet, the exception: "NumberFormatException: Zero length BigInteger" is thrown.
It only seems to happen on large record sets, and not small record sets.
Test Query:
select sum(cost), avg(cost), max(cost), min(cost), sum(sum(cost)) over () from data.`ManyRows_OptionalFixedLength_Decimal.parquet` where cost > 0