mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
db1fb6a7e5
deallocation cleanup
21 lines
428 B
PHP
21 lines
428 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;
|