mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
623ed58cfd
Backporting BUG#44058 BUG#42244 BUG#45672 BUG#45673 Backporting BUG#45819 BUG#45973 BUG#39012
23 lines
632 B
Text
23 lines
632 B
Text
source include/master-slave.inc;
|
|
connection slave;
|
|
stop slave;
|
|
connection 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;
|
|
source include/wait_for_slave_to_start.inc;
|
|
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;
|
|
delete from mysql.user where user="replicate";
|
|
sync_slave_with_master;
|
|
|
|
# End of 4.1 tests
|