mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	- Wait in loop with small sleep until tables has been renamed mysql-test/t/rename.test: To avoid scheduling effects wait for the tables to be renamed in a loop with small sleeps before continuing with tests mysql-test/include/wait_for_query_to_suceed.inc: New BitKeeper file ``mysql-test/include/wait_for_query_to_suceed.inc''
		
			
				
	
	
		
			26 lines
		
	
	
		
			368 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			368 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
#
 | 
						|
# Run a query over and over until it suceeds ot timeout occurs
 | 
						|
#
 | 
						|
 | 
						|
 | 
						|
let $counter= 100;
 | 
						|
 | 
						|
disable_abort_on_error;
 | 
						|
disable_query_log;
 | 
						|
disable_result_log;
 | 
						|
eval $query;
 | 
						|
while ($mysql_errno)
 | 
						|
{
 | 
						|
  eval $query;
 | 
						|
  sleep 0.1;
 | 
						|
  dec $counter;
 | 
						|
 | 
						|
  if (!$counter)
 | 
						|
  {
 | 
						|
    die("Waited too long for query to suceed");
 | 
						|
  }
 | 
						|
}
 | 
						|
enable_abort_on_error;
 | 
						|
enable_query_log;
 | 
						|
enable_result_log;
 |