mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
9cbf5b695f
fix to make table.cc compile
21 lines
537 B
Text
21 lines
537 B
Text
connect (master,localhost,root,,test,0,mysql-master.sock);
|
|
connect (slave,localhost,root,,test,0,mysql-slave.sock);
|
|
connection master;
|
|
reset master;
|
|
grant file on *.* to replicate@localhost identified by
|
|
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
|
|
connection slave;
|
|
slave start;
|
|
connection master;
|
|
drop table if exists t1;
|
|
create table t1(n int);
|
|
insert into t1 values(24);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|