[Feature] [Lateral-View] support outer combinator of table function (#9147)

This commit is contained in:
Pxl
2022-04-24 12:09:40 +08:00
committed by GitHub
parent 4e1b75f5e7
commit 2d83167e50
17 changed files with 269 additions and 315 deletions

View File

@ -21,13 +21,8 @@
namespace doris::vectorized {
VExplodeTableFunction::VExplodeTableFunction(bool is_outer) {
_is_outer = is_outer;
if (_is_outer) {
_fn_name = "vexplode_outer";
} else {
_fn_name = "vexplode";
}
VExplodeTableFunction::VExplodeTableFunction() {
_fn_name = "vexplode";
}
Status VExplodeTableFunction::process_init(vectorized::Block* block) {