mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Added missing DBUG_RETURN statements (in mysqldump.c) Added missing enums Fixed a lot of wrong DBUG_PRINT() statements, some of which could cause crashes Removed usage of %lld and %p in printf strings as these are not portable or produces different results on different systems.
		
			
				
	
	
		
			27 lines
		
	
	
		
			642 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			642 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
# This file is intended to be used in each IM-test. It contains stamements,
 | 
						|
# that ensure that starting conditions (environment) for the IM-test are as
 | 
						|
# expected.
 | 
						|
 | 
						|
# Check the running instances.
 | 
						|
 | 
						|
--connect (mysql1_con,localhost,root,,mysql,$IM_MYSQLD1_PORT,$IM_MYSQLD1_SOCK)
 | 
						|
 | 
						|
--connection mysql1_con
 | 
						|
 | 
						|
SHOW VARIABLES LIKE 'server_id';
 | 
						|
 | 
						|
--source include/not_windows.inc
 | 
						|
 | 
						|
--connection default
 | 
						|
 | 
						|
# Let IM detect that mysqld1 is online. This delay should be longer than
 | 
						|
# monitoring interval.
 | 
						|
 | 
						|
--sleep 2
 | 
						|
 | 
						|
# Check that IM understands that mysqld1 is online, while mysqld2 is
 | 
						|
# offline.
 | 
						|
 | 
						|
--replace_result starting XXXXX online XXXXX
 | 
						|
SHOW INSTANCES;
 |