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 aa0f8da679 [fix](fe)change session variable group_concat_max_len type
from int to long (#15531)
aa0f8da679 is described below
commit aa0f8da679b725fa0885b89416fedaaa6518a08f
Author: starocean999 <[email protected]>
AuthorDate: Fri Dec 30 19:33:08 2022 +0800
[fix](fe)change session variable group_concat_max_len type from int to long
(#15531)
cherry-pick #15515
---
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 8d8f412aee..863cd9f639 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
@@ -644,7 +644,7 @@ public class SessionVariable implements Serializable,
Writable {
public boolean enableShareHashTableForBroadcastJoin = true;
@VariableMgr.VarAttr(name = GROUP_CONCAT_MAX_LEN)
- public int groupConcatMaxLen = 2147483646;
+ public long groupConcatMaxLen = 2147483646;
// If this fe is in fuzzy mode, then will use initFuzzyModeVariables to
generate some variables,
// not the default value set in the code.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]