[ANNOUNCE] New committer: Jess Balint

2017-02-16 Thread Julian Hyde
On behalf of the PMC I am delighted to announce Jess Balint as a new Calcite committer. Jess has been making a steady stream of improvements to RelBuilder and the RelToSqlConverter, making them more usable and higher quality. Please give Jess a warm welcome to the project! Jess, If you would

Re: [ANNOUNCE] New committer: Laurent Goujon

2017-02-16 Thread Laurent Goujon
Thank you Julian for the intro, and also thanks to the PMC for inviting me. I currently work at Dremio, and these past weeks/months I have been focusing on improving our JDBC/ODBC experience, but I also have some fun poking to the other parts of Calcite and Avatica, and hopefully I'll expand the

[jira] [Created] (CALCITE-1641) MATCH_RECOGNIZE syntax support for calcite

2017-02-16 Thread Zhiqiang He (JIRA)
Zhiqiang He created CALCITE-1641: Summary: MATCH_RECOGNIZE syntax support for calcite Key: CALCITE-1641 URL: https://issues.apache.org/jira/browse/CALCITE-1641 Project: Calcite Issue Type:

[jira] [Created] (CALCITE-1644) RelToSql for MATCH_RECOGNIZE

2017-02-16 Thread Zhiqiang He (JIRA)
Zhiqiang He created CALCITE-1644: Summary: RelToSql for MATCH_RECOGNIZE Key: CALCITE-1644 URL: https://issues.apache.org/jira/browse/CALCITE-1644 Project: Calcite Issue Type: Sub-task

[jira] [Created] (CALCITE-1643) SqlToRel for MATCH_RECOGNIZE

2017-02-16 Thread Zhiqiang He (JIRA)
Zhiqiang He created CALCITE-1643: Summary: SqlToRel for MATCH_RECOGNIZE Key: CALCITE-1643 URL: https://issues.apache.org/jira/browse/CALCITE-1643 Project: Calcite Issue Type: Sub-task

Re: Calcite vs Catalyst

2017-02-16 Thread jordan.halter...@gmail.com
Calcite differs from Catalyst in many ways. First of all, Catalyst is essentially a heuristic optimizer, while Calcite optimizers often combine heuristics and cost-based optimization. Catalyst pushes down predicates and projections to most data sources, while Calcite can often push down full

Calcite vs Catalyst

2017-02-16 Thread Nick Dimiduk
Heya, I've been using Spark recently and have stumbled across a couple surprising bugs/feature gaps. It got me curious about how Calcite would handle the same scenarios. Basically, I'm wondering if Calcite would handle these scenarios directly or if it would defer to the underlying runtime. I.E.,

Re: a question about timestampadd month

2017-02-16 Thread hongbin ma
hi julian on postgres I tried timestamp + interval, because it seems timetampadd is not supported: https://www.postgresql.org/docs/9.1/static/functions-datetime.html JIRA title is updated On Fri, Feb 17, 2017 at 12:51 AM, Julian Hyde wrote: > On Postgres did you try

[jira] [Created] (CALCITE-1639) issue for timestampadd month

2017-02-16 Thread hongbin ma (JIRA)
hongbin ma created CALCITE-1639: --- Summary: issue for timestampadd month Key: CALCITE-1639 URL: https://issues.apache.org/jira/browse/CALCITE-1639 Project: Calcite Issue Type: Bug

Re: a question about timestampadd month

2017-02-16 Thread hongbin ma
Hi Julian Thanks for you reply. I have confirmed on postgresql, it behaves exactly as mysql. For ansi SQL 92 I could find http://www.contrib.andrew.cmu.edu/~shadow/sql/ sql1992.txt, however for SQL 2011 I can't find a counterpart source. Can you please kindly show me a link? just to make sure

Re: Handling of system attributes in a row

2017-02-16 Thread Fabian Hueske
Hi Julian, thanks a lot for your thoughts and advice! I'd like to give a bit more background on why we were thinking about system attributes and why we did not want to allow changing the time attribute. In Flink, the event-time attribute is handled as meta data of each record. Users do not have

Re: a question about timestampadd month

2017-02-16 Thread Julian Hyde
On Postgres did you try TIMESTAMPADD or did you try timestamp + interval? I ask because if we fix this, we are going to have to change the behavior of timestamp + interval. Also please change the JIRA case subject to something more descriptive. For the SQL standard, search for "ISO/IEC 9075-2”

Re: What type is DATE + INTERVAL?

2017-02-16 Thread Gian Merlino
Yes I have, although it's disabled in Druid for now because of a bug: https://issues.apache.org/jira/browse/CALCITE-1601. I haven't had time yet to look into why that's happening. Gian On Thu, Feb 16, 2017 at 1:59 PM, Julian Hyde wrote: > Yes, exactly. > > FLOOR( .. TO

[ANNOUNCE] New committer: Gian Merlino

2017-02-16 Thread Julian Hyde
On behalf of the PMC I am delighted to announce Gian Merlino as a new Calcite committer. Gian is one of the main developers of Druid, and has been adding SQL support to Druid over the last few months. The SQL support is based on Calcite’s Druid adapter, and he has been contributing back