[jira] [Created] (CALCITE-2682) Add ability to run tests and generate protobufs using docker-compose

2018-11-17 Thread Francis Chuang (JIRA)
Francis Chuang created CALCITE-2682: --- Summary: Add ability to run tests and generate protobufs using docker-compose Key: CALCITE-2682 URL: https://issues.apache.org/jira/browse/CALCITE-2682

Calcite-Avatica-Master - Build # 127 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #127) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/127/ to view the results.

Re: Syntax of TIMESTAMP [WITHOUT TIME ZONE], TIMESTAMP WITH LOCAL TIME ZONE and TIMESTAMP WITH TIME ZONE in Calcite 1.17

2018-11-17 Thread Julian Hyde
Maybe you should review the fix for CALCITE-1947, which added this support. Also review SqlParserTest, which has a test for TIMESTAMP '2004-12-01 12:01:01.010234567890’ but not anything like "TIMESTAMP '2004-12-01 12:01:01 US/Pacific’. > On Nov 16, 2018, at 12:39 PM, Rui Wang wrote: > >

Calcite-Avatica-Master - Build # 126 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #126) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/126/ to view the results.

Calcite-Avatica-Master - Build # 125 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #125) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/125/ to view the results.

[jira] [Created] (CALCITE-2681) Add maven-scm-api as dependency, otherwise avatica does not build

2018-11-17 Thread Francis Chuang (JIRA)
Francis Chuang created CALCITE-2681: --- Summary: Add maven-scm-api as dependency, otherwise avatica does not build Key: CALCITE-2681 URL: https://issues.apache.org/jira/browse/CALCITE-2681 Project:

Calcite-Avatica-Master - Build # 124 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #124) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/124/ to view the results.

Calcite-Avatica-Master - Build # 123 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #123) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/123/ to view the results.

Calcite-Avatica-Master - Build # 122 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #122) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/122/ to view the results.

Re: WITH RECURSIVE implementation

2018-11-17 Thread Walaa Eldin Moustafa
There was a relevant discussion some months ago in the Calcite dev mailing list. Checkout the "Recursive query, graph query, Datalog" discussion. I guess representationally, extension should be easy. A plan becomes a graph instead of a tree. Cycles in the graph mean recursion. The tricky part is

WITH RECURSIVE implementation

2018-11-17 Thread Michael Mior
I'm curious if anyone has any thoughts on how to go about implementing recursive queries. Postgres seems to only allow recursive queries with the form "non-recursive-term UNION [ALL] recursive-term" and uses a separate "recursive union" operator. Costing is also certainly a challenge since

Calcite-Avatica-Master - Build # 121 - Still Failing

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Avatica-Master (build #121) Status: Still Failing Check console output at https://builds.apache.org/job/Calcite-Avatica-Master/121/ to view the results.

[jira] [Created] (CALCITE-2680) Cannot build Avatica release due to maven-scm-provider API incompatibility

2018-11-17 Thread Francis Chuang (JIRA)
Francis Chuang created CALCITE-2680: --- Summary: Cannot build Avatica release due to maven-scm-provider API incompatibility Key: CALCITE-2680 URL: https://issues.apache.org/jira/browse/CALCITE-2680

Re: Unable to build Avatica release: An API incompatibility was encountered while executing org.apache.maven.plugins:maven-release-plugin:2.5.3:prepare

2018-11-17 Thread Francis Chuang
Thanks, Michael! Downgrading maven-scm-provider appears to fix the build. I will push a fix for this. On 17/11/2018 1:22 am, Michael Mior wrote: Looks like this is an issue with maven-scm-provider 1.11.1. https://www.mail-archive.com/issues@maven.apache.org/msg137630.html A temporary

Calcite-Master - Build # 968 - Failure

2018-11-17 Thread Apache Jenkins Server
The Apache Jenkins build system has built Calcite-Master (build #968) Status: Failure Check console output at https://builds.apache.org/job/Calcite-Master/968/ to view the results.

Re: Charset support proposal

2018-11-17 Thread Julian Hyde
I agree that a change to RelDataTypeSystem is probably not necessary. But at the code level, we have to solve the following problem: there are many, many places where CHAR or VARCHAR types are created. Each of those will need to be assigned the correct char set. We need to make sure that those

Re: Charset support proposal

2018-11-17 Thread Ted Xu
Thanks Stamatis for the comment and advice! You've made a good point on RelDataType. I agree RelDataTypeSystem change is not a necessity. I also agree with the work prioritization, the DDL changes are not urgent compare to core correctness. I'd like to create JIRA tickets on those topics which

Re: Charset support proposal

2018-11-17 Thread Ted Xu
Thanks for the comments, please find my replies inline. On Fri, Nov 16, 2018 at 2:06 AM Julian Hyde wrote: > Looks great - thank you for writing this. I have some questions. If they > are already answered in your document, forgive me, and just say “That’s > answered in the document." > > I very