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/10/18 04:34:00 UTC

[jira] [Resolved] (CALCITE-4321) JDBC adapter omits FILTER (WHERE ...) expressions when generating SQL

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

Julian Hyde resolved CALCITE-4321.
----------------------------------
    Resolution: Fixed

Fixed in [bda7fb18|https://github.com/apache/calcite/commit/bda7fb188b01c0334a7bf1662101e259321893a4]; thanks for the PR, [~jeremiahrhall]!

> JDBC adapter omits FILTER (WHERE ...) expressions when generating SQL
> ---------------------------------------------------------------------
>
>                 Key: CALCITE-4321
>                 URL: https://issues.apache.org/jira/browse/CALCITE-4321
>             Project: Calcite
>          Issue Type: Bug
>          Components: jdbc-adapter
>         Environment: MacOS 10.15, Java 11, PostgreSQL 12
>            Reporter: Jeremiah Rhoads Hall
>            Assignee: Julian Hyde
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.27.0
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> I tried out the PIVOT feature added in CALCITE-3752 and found what I think is a bug where the JDBC adapter will not generate `FILTER (WHERE ...)` expressions from relational expressions.
> Initially, I noticed that the SQL that was generated when trying out the pivot featue was missing the filter-where, but even when included directly in the Calcite SQL it's not in the SQL issued by the JDBC adapter.
> For example if I try to execute the following with Calcite:
> {code}
> select sum(amount) filter (where some_date_column = '2020-10-01') from my_table{code}
> The SQL issued by the adapter will be:
> {code}
> select sum(amount) from my_table
> {code}
> I have a small change here with a test case and a fix: https://github.com/apache/calcite/pull/2204



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