[fix](fe)change session variable group_concat_max_len from int to long (#15515)

This commit is contained in:
starocean999
2022-12-30 20:45:44 +08:00
committed by GitHub
parent ec52907b06
commit aeaa319203

View File

@ -656,7 +656,7 @@ public class SessionVariable implements Serializable, Writable {
public int repeatMaxNum = 10000;
@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.