Re: [ANNOUNCE] Danny Chan joins Calcite PMC

2019-10-30 Thread Kurt Young
Congratulations Danny!

Best,
Kurt


On Thu, Oct 31, 2019 at 11:18 AM Danny Chan  wrote:

> Thank you so much colleagues, it’s my honor to work with you!
>
> I have always felt respected and the harmony of the community, hope to
> contribute more and I would give help as best as I can, thanks !
>
> Best,
> Danny Chan
> 在 2019年10月31日 +0800 AM5:22,Francis Chuang ,写道:
> > I'm pleased to announce that Danny has accepted an invitation to
> > join the Calcite PMC. Danny has been a consistent and helpful
> > figure in the Calcite community for which we are very grateful. We
> > look forward to the continued contributions and support.
> >
> > Please join me in congratulating Danny!
> >
> > - Francis (on behalf of the Calcite PMC)
>


Re: [ANNOUNCE] New committer: Danny Chan

2019-05-13 Thread Kurt Young
Congratulations, Danny!

Best,
Kurt


On Tue, May 14, 2019 at 8:43 AM Haisheng Yuan 
wrote:

> Congratulations, Danny! Well deserved.
>
> Thanks ~
> Haisheng Yuan
> --
> 发件人:Francis Chuang
> 日 期:2019年05月14日 06:40:44
> 收件人:
> 主 题:[ANNOUNCE] New committer: Danny Chan
>
> Apache Calcite's Project Management Committee (PMC) has invited Danny
> Chan to become a committer, and we are pleased to announce that he has
> accepted.
>
> Danny has been a prolific contributor to Calcite, with CALCITE-2969
> being one of his more complex contributions to date. He has also been
> extremely active on our mailing lists, contributing to many design
> discussions.
>
> Danny, welcome, thank you for your contributions, and we look forward
> your further interactions with the community! If you wish, please feel
> free to tell us more about yourself and what you are working on.
>
> Francis (on behalf of the Apache Calcite PMC)
>


[jira] [Created] (CALCITE-1544) AggregateJoinTransposeRule transform failed

2016-12-15 Thread Kurt Young (JIRA)
Kurt Young created CALCITE-1544:
---

 Summary: AggregateJoinTransposeRule transform failed
 Key: CALCITE-1544
 URL: https://issues.apache.org/jira/browse/CALCITE-1544
 Project: Calcite
  Issue Type: Bug
Reporter: Kurt Young
Assignee: Julian Hyde


Here is the sql to reproduce the failure:
{code}
select e.deptno
from sales.emp as e join sales.dept as d on e.deptno = d.deptno
group by e.deptno
{code}
After push the aggregator past join, the RowType seems been changed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (CALCITE-1543) Decorrelator assertion fail

2016-12-15 Thread Kurt Young (JIRA)
Kurt Young created CALCITE-1543:
---

 Summary: Decorrelator assertion fail
 Key: CALCITE-1543
 URL: https://issues.apache.org/jira/browse/CALCITE-1543
 Project: Calcite
  Issue Type: Bug
Reporter: Kurt Young
Assignee: Julian Hyde


Caused by: java.lang.AssertionError at 
org.apache.calcite.sql2rel.RelDecorrelator.decorrelateRel(RelDecorrelator.java:456)

The code is:
{code}
final Frame frame = getInvoke(oldInput, rel);
if (frame == null) {
  // If input has not been rewritten, do not rewrite this rel.
  return null;
}
assert !frame.corVarOutputPos.isEmpty();
{code}

Seems like it's no need to assert the corVarOutputPos because in some cases, 
the correlate has been fully rewritten. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)