Skip to content

Commit

Permalink
fix(tianmu): fix group_concat_max_len warning (#338) (#363)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
DandreChen and mergify[bot] authored Aug 8, 2022
1 parent 83acbca commit a4f8e80
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sql/sys_vars.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4913,8 +4913,7 @@ static Sys_var_ulong Sys_group_concat_max_len(
"The maximum length of the result of function GROUP_CONCAT()",
SESSION_VAR(group_concat_max_len), CMD_LINE(REQUIRED_ARG),
VALID_RANGE(4, ULONG_MAX), DEFAULT(1024), BLOCK_SIZE(1),
NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0), ON_UPDATE(upd_tianmu_group_concat_max_len),
DEPRECATED(""));
NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0), ON_UPDATE(upd_tianmu_group_concat_max_len));
//END
static char *glob_hostname_ptr;
static Sys_var_charptr Sys_hostname(
Expand Down

0 comments on commit a4f8e80

Please sign in to comment.