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*
Related issues
- No response*
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
暂无答案!
目前还没有任何答案,快来回答吧!