Re: [New Feature] Support lateral view

2021-12-02 Thread ling miao
I added a PR[1] to support lateral view operations on the results of sub-queries. (Only include the planning part) The usage is similar to ``` select e1 from (select k2 from table) tmp1 lateral view explode_split(k2, ",") tmp2 as e1; ``` [1] https://github.com/apache/incubator-doris/pull/7269 Lin

Re:[New Feature] Support lateral view

2021-11-30 Thread 陈明雨
I added the desing of execution on BE side here[1]. And also submit a PR[2] [1] https://github.com/apache/incubator-doris/issues/6746 [2] https://github.com/apache/incubator-doris/pull/7255 -- 此致!Best Regards 陈明雨 Mingyu Chen Email: chenmin...@apache.org At 2021-11-30 16:59:23, "ling mi