diff options
author | dlenev@dlenev.mshome <> | 2003-09-16 02:58:46 +0400 |
---|---|---|
committer | dlenev@dlenev.mshome <> | 2003-09-16 02:58:46 +0400 |
commit | b5c116815590aef846e333fdc6b783fb3798a3e0 (patch) | |
tree | 6d2dccac4194e4bf23f23432998e529d1536fd70 /mysql-test/t/rpl_until.test | |
parent | 07a9b89f8594f2fd5ff62bd3ddbcc8b0302e6501 (diff) | |
download | mariadb-git-b5c116815590aef846e333fdc6b783fb3798a3e0.tar.gz |
Made rpl_until test independent from mysqld version
Diffstat (limited to 'mysql-test/t/rpl_until.test')
-rw-r--r-- | mysql-test/t/rpl_until.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_until.test b/mysql-test/t/rpl_until.test index 8845cf205a9..0c9ff03b5bd 100644 --- a/mysql-test/t/rpl_until.test +++ b/mysql-test/t/rpl_until.test @@ -1,5 +1,8 @@ source include/master-slave.inc; +# prepare version for substitutions +let $VERSION=`select version()`; + # stop slave before he will start replication connection slave; stop slave; @@ -13,6 +16,7 @@ create table t2(n int not null auto_increment primary key); insert into t2 values (1),(2); insert into t2 values (3),(4); drop table t2; +--replace_result $VERSION VERSION show binlog events; # try to replicate all queries until drop of t1 |