You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "Koji Kawamura (JIRA)" <ji...@apache.org> on 2019/03/13 06:16:00 UTC

[jira] [Created] (NIFI-6117) DataTypeUtils.isBigIntTypeCompatible always returns false

Koji Kawamura created NIFI-6117:
-----------------------------------

             Summary: 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


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) {
        return value != null && (value instanceof BigInteger || value instanceof Long);
    }
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)