This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new 49e2d9d8b8 [branch-1.2] set enable_function_pushdown to false by default 49e2d9d8b8 is described below commit 49e2d9d8b888e7f839d58eb2c493ce932881db34 Author: morningman <morning...@163.com> AuthorDate: Mon May 8 11:19:10 2023 +0800 [branch-1.2] set enable_function_pushdown to false by default The expr close logic on branch 1.2 has some bugs that is not fixed. So disable this feature on 1.2 branch. This issue has been fixed on master --- fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index 0a58ffb537..e1ac24bd55 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -600,7 +600,7 @@ public class SessionVariable implements Serializable, Writable { public boolean enableSingleReplicaInsert = false; @VariableMgr.VarAttr(name = ENABLE_FUNCTION_PUSHDOWN) - public boolean enableFunctionPushdown; + public boolean enableFunctionPushdown = false; @VariableMgr.VarAttr(name = ENABLE_LOCAL_EXCHANGE, fuzzy = true) public boolean enableLocalExchange = true; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org