[
https://issues.apache.org/jira/browse/NIFI-2802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15512875#comment-15512875
]
ASF subversion and git services commented on NIFI-2802:
-------------------------------------------------------
Commit 77f8503e98faa8d76c33756670e3d23bf189ef58 in nifi's branch
refs/heads/master from [~combine]
[ https://git-wip-us.apache.org/repos/asf?p=nifi.git;h=77f8503 ]
NIFI-2802 The implementation classes don't support orderByClause.
This closes #1044.
> 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)