mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
3f1a5f8bfc
undid bug in ENCRYPT() - will push this now added a test case for ENCRYPT() mysql-test/r/rpl000014.result: fixed result mysql-test/t/rpl000014.test: fixed timing ambiguity sql/item_strfunc.cc: undid SEGV bug in ENCRYPT()
24 lines
533 B
Text
24 lines
533 B
Text
source include/master-slave.inc;
|
|
connection master;
|
|
show master status;
|
|
connection slave;
|
|
sleep 0.2;
|
|
show slave status;
|
|
change master to master_log_pos=73;
|
|
sleep 0.2;
|
|
slave stop;
|
|
change master to master_log_pos=73;
|
|
show slave status;
|
|
slave start;
|
|
show slave status;
|
|
change master to master_log_pos=173;
|
|
show slave status;
|
|
connection master;
|
|
show master status;
|
|
drop table if exists foo;
|
|
create table foo (n int);
|
|
insert into foo values (1),(2),(3);
|
|
connection slave;
|
|
change master to master_log_pos=73;
|
|
sleep 0.2;
|
|
select * from foo;
|