mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
System variable tests delivered by Folio3 (see WL4288).
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
This commit is contained in:
34
mysql-test/include/linux_sys_vars.inc
Normal file
34
mysql-test/include/linux_sys_vars.inc
Normal file
@@ -0,0 +1,34 @@
|
||||
#
|
||||
# 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
|
Reference in New Issue
Block a user