mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-25 18:38:00 +03:00 
			
		
		
		
	 1a7cb4153c
			
		
	
	1a7cb4153c
	
	
	
		
			
			- BUG#15934: Instance manager fails to work; - BUG#18020: IM connect problem; - BUG#18027: IM: Server_ID differs; - BUG#18033: IM: Server_ID not reported; - BUG#21331: Instance Manager: Connect problems in tests; The only test suite has been changed (server codebase has not been modified).
		
			
				
	
	
		
			18 lines
		
	
	
		
			354 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			354 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| SHOW VARIABLES LIKE 'server_id';
 | |
| Variable_name	Value
 | |
| server_id	1
 | |
| SHOW INSTANCES;
 | |
| instance_name	status
 | |
| mysqld1	online
 | |
| mysqld2	offline
 | |
| UNSET mysqld1.server_id;
 | |
| server_id           = 2
 | |
| SHOW VARIABLES LIKE 'server_id';
 | |
| Variable_name	Value
 | |
| server_id	1
 | |
| UNSET mysqld2.server_id;
 | |
| FLUSH INSTANCES;
 | |
| SHOW VARIABLES LIKE 'server_id';
 | |
| Variable_name	Value
 | |
| server_id	1
 |