Calcite-Master - Build # 1730 - Failure

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

Re: "calcite" and "calcite-examples" missing from release 1.22?

2020-05-01 Thread Vladimir Sitnikov
>They have a purpose Hey Julian, would you please kindly to explain what is the purpose of calcite and calcite-examples artifacts? Vladimir

Re: [ANNOUNCE] New committer: Forward Xu

2020-05-01 Thread Haisheng Yuan
Congrats, Forward. Haisheng On 2020/05/01 20:19:47, Vineet G wrote: > Congratulations! > > > On Apr 30, 2020, at 10:57 AM, Julian Hyde wrote: > > > > Congratulations and welcome, Forward! Thank you for your contributions. > > > > It would be great to add TBDS (and its logo) to the

Re: [ANNOUNCE] New committer: Wang Yanlin

2020-05-01 Thread Haisheng Yuan
Congrats, Yanlin. Looking forward to more. Haisheng On 2020/05/01 20:19:27, Vineet G wrote: > Congratulations! > > > On May 1, 2020, at 12:11 PM, Julian Hyde wrote: > > > > Yanlin, > > > > Please create a PR adding an Ant Financial paragraph to that page. in > > the PR, include the URL of

Re: [ANNOUNCE] New committer: Jin Xing

2020-05-01 Thread Haisheng Yuan
Welcome, Jin Xing. Looking forward to more. Haisheng On 2020/05/01 20:43:39, Xiening Dai wrote: > Congrats Jin Xing. Well deserved! > > > On Apr 30, 2020, at 7:54 PM, XING JIN wrote: > > > > Thanks a lot, Julian ~ > > I'm not from MaxCompute team, but from big data platform in Alibaba Ant >

Calcite-Master - Build # 1728 - Failure

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

Re: [ANNOUNCE] New committer: Jin Xing

2020-05-01 Thread Xiening Dai
Congrats Jin Xing. Well deserved! > On Apr 30, 2020, at 7:54 PM, XING JIN wrote: > > Thanks a lot, Julian ~ > I'm not from MaxCompute team, but from big data platform in Alibaba Ant > Financial Group. > Actually we cooperate a lot with MaxCompute, it's our sister team. > > Jin > > Julian Hyde

Re: "calcite" and "calcite-examples" missing from release 1.22?

2020-05-01 Thread Julian Hyde
I disagree. They have a purpose. We used to publish them, and we should continue to publish them. If you had a good reason to publishing them when you migrated us to Gradle, you should have let us know. One negative side-effect is that if you search for "apache calcite" on Maven Central [1] it

[jira] [Created] (CALCITE-3967) Publish components "calcite" and "calcite-examples"

2020-05-01 Thread Julian Hyde (Jira)
Julian Hyde created CALCITE-3967: Summary: Publish components "calcite" and "calcite-examples" Key: CALCITE-3967 URL: https://issues.apache.org/jira/browse/CALCITE-3967 Project: Calcite

Re: [ANNOUNCE] New committer: Forward Xu

2020-05-01 Thread Vineet G
Congratulations! > On Apr 30, 2020, at 10:57 AM, Julian Hyde wrote: > > Congratulations and welcome, Forward! Thank you for your contributions. > > It would be great to add TBDS (and its logo) to the “powered by” page[1]. > What do you think? > > Julian > > [1]

Re: [ANNOUNCE] New committer: Wang Yanlin

2020-05-01 Thread Vineet G
Congratulations! > On May 1, 2020, at 12:11 PM, Julian Hyde wrote: > > Yanlin, > > Please create a PR adding an Ant Financial paragraph to that page. in > the PR, include the URL of the image that you would like me to add to > the logo diagram. > > Julian > > On Fri, May 1, 2020 at 8:02 AM

Re: [ANNOUNCE] New committer: Jin Xing

2020-05-01 Thread Vineet G
Congratulations! > On Apr 30, 2020, at 10:48 AM, Julian Hyde wrote: > > Welcome Jin! Thanks for your contributions so far, looking forward to more! > > Are you on the MaxCompute project? It’s already on our “powered by” page[1], > so I think people are familiar with it. > > Julian > > [1]

Re: Re: [ANNOUNCE] New committer: Wang Yanlin

2020-05-01 Thread Julian Hyde
Yanlin, Please create a PR adding an Ant Financial paragraph to that page. in the PR, include the URL of the image that you would like me to add to the logo diagram. Julian On Fri, May 1, 2020 at 8:02 AM Wang Yanlin <1989yanlinw...@163.com> wrote: > > > > > Thanks Julian, having an entry on the

Re: Building a Calcite Adapter

2020-05-01 Thread Jon Pither
That last plan should read: CruxToEnumerableConverter CruxProject(NAME=[$1], EXPR$1=[*(2, $3)]) CruxTableScan(table=[[crux, PERSON]]) The point being that it would great to get EnumerableCalc going. I did consult the JDBC adapter and saw it makes use of a JDBCCalc rule - and I attempted

Re: Building a Calcite Adapter

2020-05-01 Thread Jon Pither
Hi, Thanks for bearing with. I'm stuck as to when EnumerableCalc fires vs Project. We added a Project rule because it's a) desirable so we only pull back fields we need from the underlying db, and b) we needed it for inner join joins to be pushed down to our DB. That is to say that with us

Re: How to build and publish non-SNAPSHOT version?

2020-05-01 Thread Laurent Goujon
Worked fine for me (small variation: I didn't put the file in my ~/.gradle directory and instead use the -I option to point to it). Thanks for the help On Tue, Apr 28, 2020 at 10:41 AM Vladimir Sitnikov < sitnikov.vladi...@gmail.com> wrote: > > a couple of properties on the commandline to

Re:Re: [ANNOUNCE] New committer: Wang Yanlin

2020-05-01 Thread Wang Yanlin
Thanks Julian, having an entry on the powered by page for Ant Financial would be nice. [1] is the official homepage of the company I'm serving. Yanlin [1] https://www.antfin.com/ -- Best, Wang Yanlin At 2020-05-01 01:54:38, "Julian Hyde"

[jira] [Created] (CALCITE-3966) Trigger rules for existing RelSubset when it becomes delivered

2020-05-01 Thread Haisheng Yuan (Jira)
Haisheng Yuan created CALCITE-3966: -- Summary: Trigger rules for existing RelSubset when it becomes delivered Key: CALCITE-3966 URL: https://issues.apache.org/jira/browse/CALCITE-3966 Project:

Re: Building a Calcite Adapter

2020-05-01 Thread Jon Pither
Thanks. Another Q: In Crux we store documents, and values within those documents can be Clojure.lang.Keywords. I'm still deciding how to handle them with Calcite - one option being simply to wash them into Strings via the enumerator, which is our first pass. I did experiment with defining this