mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	Rather than bumping the version again, *d036cc9b2f, and again *5a4ec8e60b, and again *7f19330c59; Just accept version numbers change. Also accept that people may want to test this against more than one version.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Text
		
	
	
	
	
	
--source include/have_wsrep.inc
 | 
						|
--source include/word_size.inc
 | 
						|
--let $datadir = `SELECT @@datadir`
 | 
						|
--let $hostname = `SELECT @@hostname`
 | 
						|
 | 
						|
--replace_result $datadir DATADIR
 | 
						|
--let $hostname_regex=/^$hostname\$/HOSTNAME/
 | 
						|
--replace_regex $hostname_regex /wsrep_[0-9]{2}\.[0-9]{1,2}/wsrep_MAJVER.MINVER/
 | 
						|
--vertical_results
 | 
						|
select * from information_schema.system_variables
 | 
						|
  where variable_name like 'wsrep%'
 | 
						|
  order by variable_name;
 | 
						|
 |