You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "Byunghwa Yun (JIRA)" <ji...@apache.org> on 2016/09/22 09:52:20 UTC

[jira] [Created] (NIFI-2802) The implementation classes don't support orderByClause.

Byunghwa Yun created NIFI-2802:
----------------------------------

             Summary: The implementation classes don't support orderByClause.
                 Key: NIFI-2802
                 URL: https://issues.apache.org/jira/browse/NIFI-2802
             Project: Apache NiFi
          Issue Type: Bug
          Components: Extensions
    Affects Versions: 1.0.0
            Reporter: Byunghwa Yun
            Priority: Minor


The implementation classes don't support orderByClause.
The below code is the part of GenericDatabaseAdapter class(even OracleDatabaseAdapter and DerbyDatabaseAdapter).

        if (!StringUtils.isEmpty(orderByClause)) {
            query.append(" ORDER BY ");
            query.append(whereClause);
        }

Expected:
        if (!StringUtils.isEmpty(orderByClause)) {
            query.append(" ORDER BY ");
            query.append(orderByClause);
        }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)