mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
4091806268
into mysql.com:/home/hf/work/embt/my50-embt
22 lines
463 B
PHP
22 lines
463 B
PHP
--source include/not_embedded.inc
|
|
--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;
|