incubator-doris [Feature] [Lateral-View] support outer combinator of table function

relj7zay  于 2022-04-22  发布在  Java
关注(0)|答案(0)|浏览(155)

Search before asking

  • I had searched in the issues and found no similar issues.

Description

Now we have some outer table function like explode_bitmap, and some non-outer function like explode.
I try to make all table functions behave as non-outer, and support outer combinator to automaticly build outer version.
example:

MySQL [test]> select e1 from (select 1 k1) as t lateral view explode_numbers(0) tmp1 as e1;
Empty set (0.009 sec)

MySQL [test]> select e1 from (select 1 k1) as t lateral view explode_numbers_outer(0) tmp1 as e1; 
+------+
| e1   |
+------+
| NULL |
+------+

Use case

  • No response*
  • No response*

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题