You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2023/06/06 23:27:01 UTC

[doris] branch master updated: [bug](table_function) fix table function node forget to call open function of expr (#20495)

This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 3691372054 [bug](table_function) fix table function node forget to call open function of expr (#20495)
3691372054 is described below

commit 3691372054b2d54adf40e7ce9e6cfffdcbb4f047
Author: zhangstar333 <87...@users.noreply.github.com>
AuthorDate: Wed Jun 7 07:26:50 2023 +0800

    [bug](table_function) fix table function node forget to call open function of expr (#20495)
---
 be/src/vec/exec/vtable_function_node.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/vec/exec/vtable_function_node.h b/be/src/vec/exec/vtable_function_node.h
index d2ca9589c2..cfe74860b1 100644
--- a/be/src/vec/exec/vtable_function_node.h
+++ b/be/src/vec/exec/vtable_function_node.h
@@ -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;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org