mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	Fixed failing tests in sys_vars as we have now stricter checking of setting of variables. mysql-test/suite/sys_vars/r/innodb_adaptive_flushing_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_adaptive_hash_index_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_large_prefix_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_random_read_ahead_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_stats_on_metadata_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_strict_mode_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_support_xa_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/innodb_table_locks_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/rpl_semi_sync_master_enabled_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/r/rpl_semi_sync_slave_enabled_basic.result: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_adaptive_flushing_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_adaptive_hash_index_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_large_prefix_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_random_read_ahead_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_stats_on_metadata_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_strict_mode_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_support_xa_basic.test: One can now only assign 0 or 1 to boolean variables mysql-test/suite/sys_vars/t/innodb_table_locks_basic.test: One can now only assign 0 or 1 to boolean variables mysys/my_getsystime.c: Merge + fixed bug that __NR_clock_gettime didn't work in 5.5
		
			
				
	
	
		
			93 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| SET @start_global_value = @@global.innodb_adaptive_flushing;
 | |
| SELECT @start_global_value;
 | |
| @start_global_value
 | |
| 1
 | |
| Valid values are 'ON' and 'OFF' 
 | |
| select @@global.innodb_adaptive_flushing in (0, 1);
 | |
| @@global.innodb_adaptive_flushing in (0, 1)
 | |
| 1
 | |
| select @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 1
 | |
| select @@session.innodb_adaptive_flushing;
 | |
| ERROR HY000: Variable 'innodb_adaptive_flushing' is a GLOBAL variable
 | |
| show global variables like 'innodb_adaptive_flushing';
 | |
| Variable_name	Value
 | |
| innodb_adaptive_flushing	ON
 | |
| show session variables like 'innodb_adaptive_flushing';
 | |
| Variable_name	Value
 | |
| innodb_adaptive_flushing	ON
 | |
| select * from information_schema.global_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| select * from information_schema.session_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| set global innodb_adaptive_flushing='OFF';
 | |
| select @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 0
 | |
| select * from information_schema.global_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	OFF
 | |
| select * from information_schema.session_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	OFF
 | |
| set @@global.innodb_adaptive_flushing=1;
 | |
| select @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 1
 | |
| select * from information_schema.global_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| select * from information_schema.session_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| set global innodb_adaptive_flushing=0;
 | |
| select @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 0
 | |
| select * from information_schema.global_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	OFF
 | |
| select * from information_schema.session_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	OFF
 | |
| set @@global.innodb_adaptive_flushing='ON';
 | |
| select @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 1
 | |
| select * from information_schema.global_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| select * from information_schema.session_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| set session innodb_adaptive_flushing='OFF';
 | |
| ERROR HY000: Variable 'innodb_adaptive_flushing' is a GLOBAL variable and should be set with SET GLOBAL
 | |
| set @@session.innodb_adaptive_flushing='ON';
 | |
| ERROR HY000: Variable 'innodb_adaptive_flushing' is a GLOBAL variable and should be set with SET GLOBAL
 | |
| set global innodb_adaptive_flushing=1.1;
 | |
| ERROR 42000: Incorrect argument type to variable 'innodb_adaptive_flushing'
 | |
| set global innodb_adaptive_flushing=1e1;
 | |
| ERROR 42000: Incorrect argument type to variable 'innodb_adaptive_flushing'
 | |
| set global innodb_adaptive_flushing=2;
 | |
| ERROR 42000: Variable 'innodb_adaptive_flushing' can't be set to the value of '2'
 | |
| set global innodb_adaptive_flushing=-3;
 | |
| ERROR 42000: Variable 'innodb_adaptive_flushing' can't be set to the value of '-3'
 | |
| select @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 1
 | |
| select * from information_schema.global_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| select * from information_schema.session_variables where variable_name='innodb_adaptive_flushing';
 | |
| VARIABLE_NAME	VARIABLE_VALUE
 | |
| INNODB_ADAPTIVE_FLUSHING	ON
 | |
| set global innodb_adaptive_flushing='AUTO';
 | |
| ERROR 42000: Variable 'innodb_adaptive_flushing' can't be set to the value of 'AUTO'
 | |
| SET @@global.innodb_adaptive_flushing = @start_global_value;
 | |
| SELECT @@global.innodb_adaptive_flushing;
 | |
| @@global.innodb_adaptive_flushing
 | |
| 1
 |