You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "john zh (JIRA)" <ji...@apache.org> on 2019/08/18 02:23:00 UTC

[jira] [Updated] (CALCITE-3261) Incorrect output field names from jdbc

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

john zh updated CALCITE-3261:
-----------------------------
    Summary: Incorrect output field names from jdbc  (was: Incorrect output field name from jdbc)

> Incorrect output field names from jdbc
> --------------------------------------
>
>                 Key: CALCITE-3261
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3261
>             Project: Calcite
>          Issue Type: Improvement
>          Components: core, jdbc-adapter
>            Reporter: john zh
>            Priority: Major
>
> After implementing the missing `print(ResultSet)` method from the examples in Calcite [tutorial|[https://calcite.apache.org/docs/index.html]], I found that the output field names are incorrect:
> {code:sh}
> [deptno, EXPR$1]
> [1, 1]
> [2, 2]
> {code}
> The field name `EXPR$1` can be improved to be more human readable like MySQL:
> {code:sh}
> +--------+--------------+
> | deptno | min(e.empid) |
> +--------+--------------+
> |      1 |            1 |
> |      2 |            2 |
> +--------+--------------+
> {code}
>  
> PS: the sql statement generating the above outputs:
> {code:sql}
> select d.deptno, min(e.empid) from hr.emps as e join hr.depts as d on e.deptno = d.deptno group by d.deptno having count(*) > 1
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)