[jira] [Created] (CALCITE-1957) Cannot read HSQLDB CLOBs from avatica

2017-08-17 Thread Francis Chuang (JIRA)
Francis Chuang created CALCITE-1957: --- Summary: Cannot read HSQLDB CLOBs from avatica Key: CALCITE-1957 URL: https://issues.apache.org/jira/browse/CALCITE-1957 Project: Calcite Issue Type:

[jira] [Created] (CALCITE-1956) Allow MultiJoin to contain multiple FULL joins

2017-08-17 Thread MinJi Kim (JIRA)
MinJi Kim created CALCITE-1956: -- Summary: Allow MultiJoin to contain multiple FULL joins Key: CALCITE-1956 URL: https://issues.apache.org/jira/browse/CALCITE-1956 Project: Calcite Issue Type:

Re: Calcite: Parse nested query.

2017-08-17 Thread Jess Balint
The parser should handle this. What is stopping you from parsing it? On Wed, Aug 16, 2017 at 11:47 PM, SN, Ranganath wrote: > Hi Team, > I am trying to parse nested query. Is there any functionalities or apis to > parse nested query. > > Sample query: Select a,b,c from d

[jira] [Created] (CALCITE-1955) Cannot insert blob into Avatica-HSQLDB table because table is read only

2017-08-17 Thread Francis Chuang (JIRA)
Francis Chuang created CALCITE-1955: --- Summary: Cannot insert blob into Avatica-HSQLDB table because table is read only Key: CALCITE-1955 URL: https://issues.apache.org/jira/browse/CALCITE-1955

[jira] [Created] (CALCITE-1954) SqlValidator need to maintain forceNullable across joins and renaming

2017-08-17 Thread MinJi Kim (JIRA)
MinJi Kim created CALCITE-1954: -- Summary: SqlValidator need to maintain forceNullable across joins and renaming Key: CALCITE-1954 URL: https://issues.apache.org/jira/browse/CALCITE-1954 Project: Calcite

[jira] [Created] (CALCITE-1953) Reducing NOT() should not collaose NOT(IS_TRUE) to IS_FALSE for nullable inputs

2017-08-17 Thread MinJi Kim (JIRA)
MinJi Kim created CALCITE-1953: -- Summary: Reducing NOT() should not collaose NOT(IS_TRUE) to IS_FALSE for nullable inputs Key: CALCITE-1953 URL: https://issues.apache.org/jira/browse/CALCITE-1953

[jira] [Created] (CALCITE-1952) Apache Calcite 1.13.0 produced null pointer exception compared to 1.12.0

2017-08-17 Thread Mark Ashworth (JIRA)
Mark Ashworth created CALCITE-1952: -- Summary: Apache Calcite 1.13.0 produced null pointer exception compared to 1.12.0 Key: CALCITE-1952 URL: https://issues.apache.org/jira/browse/CALCITE-1952

[jira] [Created] (CALCITE-1951) Avatica HSQLDB docker image time loses fractional seconds

2017-08-17 Thread Francis Chuang (JIRA)
Francis Chuang created CALCITE-1951: --- Summary: Avatica HSQLDB docker image time loses fractional seconds Key: CALCITE-1951 URL: https://issues.apache.org/jira/browse/CALCITE-1951 Project: Calcite

Calcite: Parse nested query.

2017-08-17 Thread SN, Ranganath
Hi Team, I am trying to parse nested query. Is there any functionalities or apis to parse nested query. Sample query: Select a,b,c from d where d.id in (select id from (select id from e)); Same question I asked in Stack overflow: