summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000014.test
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2000-12-20 07:15:49 -0700
committerunknown <sasha@mysql.sashanet.com>2000-12-20 07:15:49 -0700
commit089b11158fa903f23d9ae672247bea96a27b7ffb (patch)
treeb14f5a3f11e555c145a890d7d6a2859be133e88d /mysql-test/t/rpl000014.test
parentc8dde8ba33593b921b5947316404fdc2e0a59876 (diff)
downloadmariadb-git-089b11158fa903f23d9ae672247bea96a27b7ffb.tar.gz
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()
Diffstat (limited to 'mysql-test/t/rpl000014.test')
-rw-r--r--mysql-test/t/rpl000014.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/rpl000014.test b/mysql-test/t/rpl000014.test
index e47933b140a..200decf5201 100644
--- a/mysql-test/t/rpl000014.test
+++ b/mysql-test/t/rpl000014.test
@@ -2,9 +2,10 @@ 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 1;
+sleep 0.2;
slave stop;
change master to master_log_pos=73;
show slave status;
@@ -19,5 +20,5 @@ create table foo (n int);
insert into foo values (1),(2),(3);
connection slave;
change master to master_log_pos=73;
-sleep 0.3;
+sleep 0.2;
select * from foo;