This is an automated email from the ASF dual-hosted git repository. jianliangqi pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new f4b5327ec7b branch-2.1: [fix](session var) add need forward for batch_size #46871 (#46894) f4b5327ec7b is described below commit f4b5327ec7be9173ddfd00a05412bf65081e4088 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Jan 13 21:41:42 2025 +0800 branch-2.1: [fix](session var) add need forward for batch_size #46871 (#46894) Cherry-picked from #46871 Co-authored-by: qiye <l...@selectdb.com> --- 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 7049fc6413d..a65f750d6db 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 @@ -903,7 +903,7 @@ public class SessionVariable implements Serializable, Writable { public boolean haveQueryCache = false; // 4096 minus 16 + 16 bytes padding that in padding pod array - @VariableMgr.VarAttr(name = BATCH_SIZE, fuzzy = true, checker = "checkBatchSize") + @VariableMgr.VarAttr(name = BATCH_SIZE, fuzzy = true, checker = "checkBatchSize", needForward = true) public int batchSize = 4064; @VariableMgr.VarAttr(name = DISABLE_STREAMING_PREAGGREGATIONS, fuzzy = true) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org