[
https://issues.apache.org/jira/browse/NIFI-6117?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Matt Burgess updated NIFI-6117:
-------------------------------
Status: Patch Available (was: Open)
> DataTypeUtils.isBigIntTypeCompatible always returns false
> ---------------------------------------------------------
>
> Key: NIFI-6117
> URL: https://issues.apache.org/jira/browse/NIFI-6117
> Project: Apache NiFi
> Issue Type: Bug
> Reporter: Koji Kawamura
> Assignee: Koji Kawamura
> Priority: Major
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> Because it checks null value wrongly:
> {code:java}
> public static boolean isBigIntTypeCompatible(final Object value) {
> return value == null && (value instanceof BigInteger || value
> instanceof Long);
> }
> {code}
> should be:
> {code:java}
> public static boolean isBigIntTypeCompatible(final Object value) {
> // We need something similar to isIntegral, but the value can be
> larger than the max long.
> return isNumberTypeCompatible(value, s ->
> somethingSimilarToIsIntegral(s))
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)