Skip to content

Commit

Permalink
fix: Add BigDecimal and BigInteger as numeric aggregation options (#4878
Browse files Browse the repository at this point in the history
)

- BigDecimal and BigInteger weren't listed as numeric types, and were not getting aggregated properly
- Fixes #4877
  • Loading branch information
mofojed committed Dec 4, 2023
1 parent 414be28 commit fa233ee
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ private static boolean isNumeric(String columnType) {
case "long":
case "short":
case "char":
case "byte": {
case "byte":
case "java.math.BigDecimal":
case "java.math.BigInteger": {
return true;
}
}
Expand Down

0 comments on commit fa233ee

Please sign in to comment.