Re: [DISCUSS] Support CROSS/OUTER APPLY syntax

2016-10-27 Thread Jark Wu
Great! I have logged a JIRA https://issues.apache.org/jira/browse/CALCITE-1472 - Jark Wu > 在 2016年10月25日,下午11:54,Julian Hyde 写道: > > It seems as if it is syntactic sugar for a feature we already have. So, I’d > have no objections adding t

Re: [DISCUSS] Support CROSS/OUTER APPLY syntax

2016-10-25 Thread Julian Hyde
It seems as if it is syntactic sugar for a feature we already have. So, I’d have no objections adding this if it was enabled by a SqlConformance setting. (Accompanied by the appropriate positive and negative tests, and some documentation, of course.) > On Oct 25, 2016, at 1:18 AM, Jark Wu wrot

[DISCUSS] Support CROSS/OUTER APPLY syntax

2016-10-25 Thread Jark Wu
Hi all, Currently we want to implement CROSS APPLY and OUTER APPLY syntax in Flink SQL, and we hope that it could be supported by Calcite. The CROSS/OUTER APPLY is very similar to CROSS JOIN and OUTER JOIN. The difference is that the APPLY operator is used to invoke a table-valued function. Th