forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase the precision of decimals during compute
This is an initial pass whereby a scalar aggregate of a Decimal type increases its precision to the maximum. That is, a sum of an array of decimal128(3, 2)'s becomes a decimal128(38, 2). Previously, the exact decimal type was preserved (e.g., a sum of decimal128(3, 2)'s was a decimal128(3, 2)) *regardless* of whether that was enough precision to capture the full decimal value.
- Loading branch information
Showing
3 changed files
with
130 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters