mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	behave randomly with mysql_change_user. The test case had to be moved into not_embedded_server.test file, because SHOW GLOBAL STATUS does not work properly in embedded server (see bug 34517). BitKeeper/deleted/.del-change_user-master.opt: Delete: mysql-test/t/change_user-master.opt mysql-test/r/change_user.result: Move test case for Bug#31222 to not_embedded_server.test. mysql-test/r/not_embedded_server.result: Move test case for Bug#31222 to not_embedded_server.test. mysql-test/t/change_user.test: Move test case for Bug#31222 to not_embedded_server.test. mysql-test/t/not_embedded_server.test: Move test case for Bug#31222 to not_embedded_server.test.
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # Bug#20023 mysql_change_user() resets the value of SQL_BIG_SELECTS
 | |
| #
 | |
| 
 | |
| --echo Bug#20023
 | |
| SELECT @@session.sql_big_selects;
 | |
| SELECT @@global.max_join_size;
 | |
| --echo change_user
 | |
| --change_user
 | |
| SELECT @@session.sql_big_selects;
 | |
| SELECT @@global.max_join_size;
 | |
| SET @@global.max_join_size = 10000;
 | |
| SET @@session.max_join_size = default;
 | |
| --echo change_user
 | |
| --change_user
 | |
| SELECT @@session.sql_big_selects;
 | |
| SET @@global.max_join_size = -1;
 | |
| SET @@session.max_join_size = default;
 | |
| --echo change_user
 | |
| --change_user
 | |
| SELECT @@session.sql_big_selects;
 | |
| 
 | |
| #
 | |
| # Bug#31418 User locks misfunctioning after mysql_change_user()
 | |
| #
 | |
| 
 | |
| --echo Bug#31418
 | |
| SELECT IS_FREE_LOCK('bug31418');
 | |
| SELECT IS_USED_LOCK('bug31418');
 | |
| SELECT GET_LOCK('bug31418', 1);
 | |
| SELECT IS_USED_LOCK('bug31418') = CONNECTION_ID();
 | |
| --echo change_user
 | |
| --change_user
 | |
| SELECT IS_FREE_LOCK('bug31418');
 | |
| SELECT IS_USED_LOCK('bug31418');
 | |
| 
 | |
| #
 | |
| # Bug#31222: com_% global status counters behave randomly with
 | |
| # mysql_change_user.
 | |
| #
 | |
| # Moved to not_embedded_server.test due to Bug#34517: SHOW GLOBAL STATUS does
 | |
| # not work properly in embedded server.
 | |
| #
 | |
| # TODO: move it back when Bug#34517 is fixed (don't forget to add
 | |
| # --force-restart into change_user-master.opt).
 | |
| #
 |