mirror of
https://github.com/MariaDB/server.git
synced 2025-10-25 18:38:00 +03:00
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
20 lines
576 B
Plaintext
20 lines
576 B
Plaintext
connect (master,localhost,root,,test,0,master.sock);
|
|
connect (slave,localhost,root,,test,0,slave.sock);
|
|
connection master;
|
|
reset master;
|
|
grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
|
|
grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
|
|
connection slave;
|
|
start slave;
|
|
connection master;
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
create table t1(n int);
|
|
insert into t1 values(24);
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
connection master;
|
|
drop table t1;
|
|
sync_slave_with_master;
|