diff options
author | unknown <jmiller@mysql.com> | 2006-02-07 14:51:46 +0100 |
---|---|---|
committer | unknown <jmiller@mysql.com> | 2006-02-07 14:51:46 +0100 |
commit | 84ca91227c0f21202e4fcd43da7ffd9e2282f336 (patch) | |
tree | 32fdf032b070c6df537592e54f4b2c237c259c2b /mysql-test/r/rpl_drop_temp.result | |
parent | dbcc775333f5f47e6d001c9376578daae5c49023 (diff) | |
download | mariadb-git-84ca91227c0f21202e4fcd43da7ffd9e2282f336.tar.gz |
More rpl test updates with using ndb as default engine
mysql-test/t/rpl_drop_temp.test:
Updated with work around stated by Tomas in bug 16552. NDB does not support temp tables.
mysql-test/r/rpl_drop_temp.result:
Updated with work around stated by Tomas in bug 16552. NDB does not support temp tables.
mysql-test/t/rpl_foreign_key_innodb-slave.opt:
Need to ensure that innodb table is created on the slave for this test
mysql-test/t/rpl_err_ignoredtable.test:
updated to run with ndb as default
mysql-test/r/rpl_err_ignoredtable.result:
updated to run with ndb as default
mysql-test/t/disabled.def:
Update requested by Lars
mysql-test/t/rpl_load_table_from_master.test:
Update requested by Lars
mysql-test/r/rpl_load_table_from_master.result:
Update requested by Lars
Diffstat (limited to 'mysql-test/r/rpl_drop_temp.result')
-rw-r--r-- | mysql-test/r/rpl_drop_temp.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/rpl_drop_temp.result b/mysql-test/r/rpl_drop_temp.result index 04fe094ea26..40d578dd13e 100644 --- a/mysql-test/r/rpl_drop_temp.result +++ b/mysql-test/r/rpl_drop_temp.result @@ -5,8 +5,8 @@ reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; create database if not exists mysqltest; -create temporary table mysqltest.t1 (n int); -create temporary table mysqltest.t2 (n int); +create temporary table mysqltest.t1 (n int)ENGINE=MyISAM; +create temporary table mysqltest.t2 (n int)ENGINE=MyISAM; show status like 'Slave_open_temp_tables'; Variable_name Value Slave_open_temp_tables 0 |