Re: Assigning jira issue

2019-08-08 Thread Francis Chuang
Hi Xing Jin, I've added you to the contributor role. Francis On 9/08/2019 12:52 pm, XING JIN wrote: Hi Francis, I have the same request with Sahith. Could you please add me to the contributor list as well ? My user name is -- jin xing Thanks a lot ! Francis Chuang 于2019年8月9日周五 上午5:58写道:

Re: Assigning jira issue

2019-08-08 Thread XING JIN
Hi Francis, I have the same request with Sahith. Could you please add me to the contributor list as well ? My user name is -- jin xing Thanks a lot ! Francis Chuang 于2019年8月9日周五 上午5:58写道: > Hey Sahith, > > I've added you to the contributor role and assigned the issue to you. > > Francis > > On

Re: Assigning jira issue

2019-08-08 Thread Francis Chuang
Hey Sahith, I've added you to the contributor role and assigned the issue to you. Francis On 8/08/2019 11:54 pm, sahith.re...@gmail.com wrote: Hello, I created issue CALCITE-3237, https://issues.apache.org/jira/browse/CALCITE-3237, and I submitted a PR for it as well. Can this issue be

Re: Optimization of join between a small table and a large table

2019-08-08 Thread Julian Hyde
When you implement an equi-join as a nested loops join, the right-hand side always has a filter combining the variable set by the left-hand side and the join column on the right-hand side. You will need to do a full scan of the right-hand table every time, unless your table is organized so

Assigning jira issue

2019-08-08 Thread sahith . reddy
Hello, I created issue CALCITE-3237, https://issues.apache.org/jira/browse/CALCITE-3237, and I submitted a PR for it as well. Can this issue be assigned to me? My jira username is snallapa. Thank you! Thanks, Sahith

Filterable table

2019-08-08 Thread Lekshmi
Hi, Can anyone explain to me what is the advantage of Filterable Table? How can we efficiently make use of that in a Federated system? Thanks and Regards Lekshmi B.G Email: lekshmib...@gmail.com

[jira] [Created] (CALCITE-3237) ExpressionWriter not updating indent correctly

2019-08-08 Thread Sahith Nallapareddy (JIRA)
Sahith Nallapareddy created CALCITE-3237: Summary: ExpressionWriter not updating indent correctly Key: CALCITE-3237 URL: https://issues.apache.org/jira/browse/CALCITE-3237 Project: Calcite

Re: Optimization of join between a small table and a large table

2019-08-08 Thread Gabriel Reid
Hi Stamatis, Thank you so much, this is exactly the kind of info I was looking for! I think I can figure out how to go forward based on this, thanks again. - Gabriel On Thu, Aug 8, 2019 at 8:19 AM Stamatis Zampetakis wrote: > Hi Gabriel, > > What you want indeed seems to be a nested loop

Re: Optimization of join between a small table and a large table

2019-08-08 Thread Stamatis Zampetakis
Hi Gabriel, What you want indeed seems to be a nested loop join; there has been a relevant discussion in the dev list [1]. You may also find relevant the ongoing discussion on CALCITE-2979 [2]. Best, Stamatis [1]