mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
e825879800
(Mostly in DBUG_PRINT() and unused arguments) Fixed bug in query cache when used with traceing (--with-debug) Fixed memory leak in mysqldump Removed warnings from mysqltest scripts (replaced -- with #)
21 lines
429 B
PHP
21 lines
429 B
PHP
--source ./include/have_federated_db.inc
|
|
|
|
source ./include/master-slave.inc;
|
|
|
|
# remote table creation
|
|
|
|
connection slave;
|
|
#--replicate-ignore-db=federated
|
|
stop slave;
|
|
|
|
--disable_warnings
|
|
# at this point, we are connected to master
|
|
DROP DATABASE IF EXISTS federated;
|
|
--enable_warnings
|
|
CREATE DATABASE federated;
|
|
|
|
connection master;
|
|
--disable_warnings
|
|
DROP DATABASE IF EXISTS federated;
|
|
--enable_warnings
|
|
CREATE DATABASE federated;
|