mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
bf1e547779
The minimum value differs depending on the OS and mysqld build, so that the test fail spradically. The check of this value has been changed from check of concrete values to the check of a range that is near by the expected value.
33 lines
803 B
SQL
33 lines
803 B
SQL
#
|
|
# This file contains default,min and max values for sys variables for redhat linux
|
|
#
|
|
|
|
--disable_query_log
|
|
|
|
SET @default_flush_time = 0;
|
|
SET @min_flush_time = 0;
|
|
#SET @max_flush_time = 0;
|
|
|
|
SET @default_key_buffer_size = 131072;
|
|
|
|
#SET @default_join_buffer_size = 131072;
|
|
#SET @min_join_buffer_size = 8200;
|
|
#SET @max_join_buffer_size = 4294967295;
|
|
|
|
SET @default_max_join_size = 4294967295;
|
|
SET @min_max_join_size = 1;
|
|
SET @max_max_join_size = 4294967295;
|
|
|
|
SET @default_sql_max_join_size = 4294967295;
|
|
SET @min_sql_max_join_size = 1;
|
|
SET @max_sql_max_join_size = 4294967295;
|
|
|
|
SET @default_sql_select_limit = 4294967295;
|
|
SET @min_sql_select_limit = 0;
|
|
SET @max_sql_select_limit = 4294967295;
|
|
|
|
SET @default_wait_timeout= 28800;
|
|
SET @min_wait_timeout= 1;
|
|
SET @max_wait_timeout= 31536000;
|
|
|
|
--enable_query_log
|