mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.3 into 10.4
This commit is contained in:
14
mysql-test/include/galera_suspend.inc
Normal file
14
mysql-test/include/galera_suspend.inc
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# This macro suspends the current node
|
||||
#
|
||||
|
||||
--let _SUSPEND_NODE_PIDFILE = `SELECT @@pid_file`
|
||||
--echo Suspending node ...
|
||||
|
||||
--perl
|
||||
my $pid_filename = $ENV{'_SUSPEND_NODE_PIDFILE'};
|
||||
my $mysqld_pid = `cat $pid_filename`;
|
||||
chomp($mysqld_pid);
|
||||
system("kill -SIGSTOP $mysqld_pid");
|
||||
exit(0);
|
||||
EOF
|
@@ -35,6 +35,7 @@ BEGIN
|
||||
AND variable_name != 'INNODB_BUFFER_POOL_LOAD_AT_STARTUP'
|
||||
AND variable_name not like 'GTID%POS'
|
||||
AND variable_name != 'GTID_BINLOG_STATE'
|
||||
AND variable_name != 'AUTO_INCREMENT_INCREMENT'
|
||||
ORDER BY variable_name;
|
||||
|
||||
-- Dump all databases, there should be none
|
||||
|
Reference in New Issue
Block a user