mirror of
https://github.com/MariaDB/server.git
synced 2025-11-08 00:28:29 +03:00
Galera provider options contains many options and several directory names and file names that could lead situation where wsrep_provider_options string is longer than 2k. Many tests set few new options required by test and then restore wsrep_provider_options to original value. This restoring wsrep_provider_options string to original value then fails because of common limit for all charptr variables (2k). Fix is to increase common limit for all charptr variables to 4kb.
14 lines
314 B
Plaintext
14 lines
314 B
Plaintext
--echo #
|
|
--echo # test cleanup of sys_var classes
|
|
--echo #
|
|
|
|
--let $long_string=`select repeat('.', 4097)`
|
|
--error ER_WRONG_STRING_LENGTH
|
|
eval set global init_connect="$long_string";
|
|
--error ER_WRONG_STRING_LENGTH
|
|
eval set global ft_boolean_syntax="$long_string";
|
|
|
|
--echo #
|
|
--echo # end of test mdev_15935
|
|
--echo #
|