diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2004-02-02 21:34:04 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2004-02-02 21:34:04 +0200 |
commit | 2d06a32a577874c2ce0f2e3893a00b121ede639d (patch) | |
tree | 3297cfd9101ab3e7e930c1c0a96ea458c903efdf /mysql-test/t/rpl_log.test | |
parent | d9b55b6ed97586afbc24d5c446c219bf98f4453d (diff) | |
download | mariadb-git-2d06a32a577874c2ce0f2e3893a00b121ede639d.tar.gz |
rpl_log.result:
a result file for a fix for bug #2557
rpl_log.test:
A test case for a fix for bug #2557
mysql-test/t/rpl_log.test:
A test case for a fix for bug #2557
mysql-test/r/rpl_log.result:
a result file for a fix for bug #2557
Diffstat (limited to 'mysql-test/t/rpl_log.test')
-rw-r--r-- | mysql-test/t/rpl_log.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_log.test b/mysql-test/t/rpl_log.test index 7ae0a4dc3c2..5f59b1034dc 100644 --- a/mysql-test/t/rpl_log.test +++ b/mysql-test/t/rpl_log.test @@ -35,12 +35,14 @@ drop table t1; create table t1 (word char(20) not null); load data infile '../../std_data/words.dat' into table t1 ignore 1 lines; select count(*) from t1; +create table t2 like t1; drop table t1; --replace_result $VERSION VERSION show binlog events; show binlog events from 79 limit 1; show binlog events from 79 limit 2; show binlog events from 79 limit 2,1; +show binlog events from 79 limit 2,2; flush logs; # We need an extra update before doing save_master_pos. |