[bug](table_function) fix table function node forget to call open function of expr (#20495)

This commit is contained in:
zhangstar333
2023-06-07 07:26:50 +08:00
committed by GitHub
parent 3aa0c2bdbf
commit 3691372054

View File

@ -56,6 +56,7 @@ public:
Status prepare(RuntimeState* state) override;
Status open(RuntimeState* state) override {
RETURN_IF_ERROR(alloc_resource(state));
RETURN_IF_ERROR(VExpr::open(_vfn_ctxs, state));
return _children[0]->open(state);
}
Status get_next(RuntimeState* state, Block* block, bool* eos) override;