mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
d2810c56cf
client/mysqldump.c: Fixed wrong argument to printf() client/mysqltest.c: Fixed compiler warning myisam/ft_boolean_search.c: Fixed compiler warning myisammrg/myrg_static.c: Fixed compiler warning mysql-test/r/rpl_drop_temp.result: Drop used database mysql-test/t/rpl_drop_temp.test: Drop used database ndb/src/common/logger/LogHandler.cpp: Fixed compiler warning sql/field.cc: Fixed compiler warning sql/ha_ndbcluster.cc: Fixed compiler warning sql/sql_base.cc: Fixed compiler warning tests/mysql_client_test.c: Fixed compiler warning
17 lines
436 B
Text
17 lines
436 B
Text
source include/master-slave.inc;
|
|
--disable_warnings
|
|
create database if not exists mysqltest;
|
|
--enable_warnings
|
|
|
|
create temporary table mysqltest.t1 (n int);
|
|
create temporary table mysqltest.t2 (n int);
|
|
sync_slave_with_master;
|
|
connection master;
|
|
disconnect master;
|
|
connection slave;
|
|
--real_sleep 3; # time for DROP to be written
|
|
show status like 'Slave_open_temp_tables';
|
|
connection default;
|
|
drop database mysqltest;
|
|
|
|
# End of 4.1 tests
|