mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
Rather than bumping the version again, * d036cc9b2f595cac1453f2a251515c6b9a408521, and again * 5a4ec8e60b10c176af1dd84157e1d15cf905637b, and again * 7f19330c595e3183d079fe2c18eecc74740e8f83; Just accept version numbers change. Also accept that people may want to test this against more than one version.
14 lines
431 B
Plaintext
14 lines
431 B
Plaintext
--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;
|
|
|