summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_rotate_logs.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-02-23 20:35:59 +0100
committerunknown <serg@serg.mylan>2005-02-23 20:35:59 +0100
commitbef32dfacd53c74ab2c78912ba20aa8bb37aced4 (patch)
treea3a02de15dc4fae9284a7557794d6eeab1c2d805 /mysql-test/t/rpl_rotate_logs.test
parent58df85e06a88f4cafe48934d058f5bfb66831661 (diff)
downloadmariadb-git-bef32dfacd53c74ab2c78912ba20aa8bb37aced4.tar.gz
innodb-dependent test moved from rpl_rotate_logs.test to binlog.test
mysql-test/r/binlog.result: binlog rotation after a big transation mysql-test/r/rpl_rotate_logs.result: innodb-dependent test removed mysql-test/t/binlog.test: binlog rotation after a big transation mysql-test/t/rpl_rotate_logs.test: innodb-dependent test removed
Diffstat (limited to 'mysql-test/t/rpl_rotate_logs.test')
-rw-r--r--mysql-test/t/rpl_rotate_logs.test27
1 files changed, 0 insertions, 27 deletions
diff --git a/mysql-test/t/rpl_rotate_logs.test b/mysql-test/t/rpl_rotate_logs.test
index 47b5754232c..7622a93e2a3 100644
--- a/mysql-test/t/rpl_rotate_logs.test
+++ b/mysql-test/t/rpl_rotate_logs.test
@@ -153,30 +153,3 @@ connection master;
drop table if exists t1,t2,t3,t4;
sync_slave_with_master;
-#
-# now the same in a transaction
-#
-slave stop; # we don't need it anymore
-connection master;
-reset master;
-let $1=100;
-
---disable_warnings
-create table t1 (n int) engine=innodb;
---enable_warnings
-begin;
---disable_query_log
-while ($1)
-{
- eval insert into t1 values($1 + 4);
- dec $1;
-}
---enable_query_log
-commit;
-drop table t1;
-let $VERSION=`select version()`;
---replace_result $VERSION VERSION "xid=373" "xid=146"
-show binlog events in 'master-bin.000001';
---replace_result $VERSION VERSION
-show binlog events in 'master-bin.000002';
-