mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00

while slave thread has temp tables - not hard to fix though, but it is time to go to bed added a new test case for temp table replication and Slave_open_temp_tables status variable. Misc fixes
12 lines
361 B
PHP
12 lines
361 B
PHP
connect (master,localhost,root,,test,0,var/tmp/mysql.sock);
|
|
connect (master1,localhost,root,,test,0,var/tmp/mysql.sock);
|
|
connect (slave,localhost,root,,test,0,var/tmp/mysql-slave.sock);
|
|
connect (slave1,localhost,root,,test,0,var/tmp/mysql-slave.sock);
|
|
connection slave;
|
|
!slave stop;
|
|
connection master;
|
|
reset master;
|
|
connection slave;
|
|
reset slave;
|
|
!slave start;
|