You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Julian Hyde (Jira)" <ji...@apache.org> on 2020/01/30 01:13:00 UTC

[jira] [Resolved] (CALCITE-3751) JDBC adapter wrongly pushes ORDER BY into sub-query

     [ https://issues.apache.org/jira/browse/CALCITE-3751?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Julian Hyde resolved CALCITE-3751.
----------------------------------
    Fix Version/s: 1.22.0
       Resolution: Fixed

Fixed in [3c9e156a|https://github.com/apache/calcite/commit/3c9e156aea4a246318e1fa9ea299adfc9479e20e].

> JDBC adapter wrongly pushes ORDER BY into sub-query
> ---------------------------------------------------
>
>                 Key: CALCITE-3751
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3751
>             Project: Calcite
>          Issue Type: Bug
>          Components: jdbc-adapter
>            Reporter: Julian Hyde
>            Assignee: Julian Hyde
>            Priority: Major
>             Fix For: 1.22.0
>
>
> JDBC adapter wrongly pushes ORDER BY into sub-query. When I run
> {code:java}
> select deptno, job, sum(sal)
> from scott.emp
> group by deptno, job
> order by 1,2;
> {code}
> against the hsqldb database via the JDBC adapter I get the error
> {noformat}
> Error: Error while executing SQL "select deptno, job, sum(sal) from scott.emp group by deptno, job order by 1,2": While executing SQL [SELECT "DEPTNO", "JOB", SUM("SAL")
> FROM (SELECT "JOB", "DEPTNO", SUM("SAL")
> FROM "SCOTT"."EMP"
> GROUP BY "JOB", "DEPTNO"
> ORDER BY "DEPTNO" NULLS LAST, "JOB" NULLS LAST) AS "t0"] on JDBC sub-schema (state=,code=0)
> Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: SAL
>  at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source)
>  at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source)
> {noformat}
> Note that ORDER BY is inside a sub-query, which I presume is invalid SQL for hsqldb (and most other DBs).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)