[improvement](lateral-view) Add number rows filtered in profile (#8251)

Add `RowsFiltered` counter in TableFunctionNode profile.
So that we can know the total number of rows that TableFunctionNode processed
This commit is contained in:
Mingyu Chen
2022-03-01 11:04:57 +08:00
committed by GitHub
parent 01365f1a1d
commit e77e2b0bf0
6 changed files with 29 additions and 2 deletions

View File

@ -42,6 +42,7 @@ public:
virtual Status forward(bool *eos) = 0;
public:
std::string name() const { return _fn_name; }
bool eos() const { return _eos; }
void set_expr_context(ExprContext* expr_context) {