mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
b00c536378
BitKeeper/etc/ignore: Added mysql-test/linux_sys_vars.inc mysql-test/load_sysvars.inc mysql-test/windows_sys_vars.inc to the ignore list
34 lines
834 B
SQL
34 lines
834 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 @min_key_buffer_size = 36;
|
|
|
|
#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
|