mariadb/mysql-test/t/rpl000014.test
unknown 3f1a5f8bfc fixed up rpl000014
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()
2000-12-20 07:15:49 -07:00

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;