[fix](lateral-view) Fix some lateral view bugs (#7772)

1. Fix bug that BE may crash when input node of TableFunctionNode has non-null column
2. Fix bug that TableFunctionNode may not return all results
This commit is contained in:
Mingyu Chen
2022-01-18 12:09:32 +08:00
committed by GitHub
parent 3494c8973b
commit efb4e189df
4 changed files with 35 additions and 9 deletions

View File

@ -72,6 +72,8 @@ private:
int _parent_tuple_desc_size = -1;
int _child_tuple_desc_size = -1;
std::vector<int> _child_slot_sizes;
// indicate if child node reach the end
bool _child_eos = false;
};
}; // namespace doris