mirror of
https://github.com/MariaDB/server.git
synced 2025-07-17 12:02:09 +03:00
MDEV-4677 GROUP_CONCAT not showing any output with group_concat_max_len >= 4Gb
don't allow group_concat_max_len values >= 4Gb (they never worked anyway)
This commit is contained in:
@ -555,7 +555,6 @@ typedef struct system_variables
|
||||
ulonglong bulk_insert_buff_size;
|
||||
ulonglong join_buff_size;
|
||||
ulonglong sortbuff_size;
|
||||
ulonglong group_concat_max_len;
|
||||
ulonglong default_regex_flags;
|
||||
ulonglong max_mem_used;
|
||||
|
||||
@ -645,6 +644,8 @@ typedef struct system_variables
|
||||
uint32 gtid_domain_id;
|
||||
uint64 gtid_seq_no;
|
||||
|
||||
uint group_concat_max_len;
|
||||
|
||||
/**
|
||||
Default transaction access mode. READ ONLY (true) or READ WRITE (false).
|
||||
*/
|
||||
|
Reference in New Issue
Block a user