mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
0805cdebd3
Analysis: get_defaults_options() rewrites the value for my_defaults_file, my_defaults_extra_file and my_defaults_group_suffix to 0. So the config file can't be read. Fix: Let handle_options() handle --defaults* option and create a new command line to pass it to load_defaults().
51 lines
1.2 KiB
Text
51 lines
1.2 KiB
Text
# MDEV-24248: my_print_defaults is not taking all the values when using
|
|
# -e option which is called from mysql.server (extra_args).
|
|
#
|
|
# checking for mysql.server
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
--table_definition_cache=2000
|
|
--read_buffer_size=1M
|
|
--thread_cache_size=8
|
|
--max_connections=1024
|
|
--long_query_time=60
|
|
--slow_query_log=1
|
|
#
|
|
# MDEV-25908: -e does not work for my_print_defaults
|
|
#
|
|
# Testing -e
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
#Testing --defaults-extra-file
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
#
|
|
# Testing other options
|
|
#
|
|
# Testing -c option
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
# Testing --defaults-file
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
# Testing -g option
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
--table_definition_cache=2000
|
|
--read_buffer_size=1M
|
|
--thread_cache_size=8
|
|
# Testing --defaults-group-suffix
|
|
--key_buffer_size=20M
|
|
--max_allowed_packet=250M
|
|
--table_open_cache=1000
|
|
--table_definition_cache=2000
|
|
--read_buffer_size=1M
|
|
--thread_cache_size=8
|
|
# Testing --no-defaults
|
|
# End of 10.5 Test
|