diff options
author | unknown <pgalbraith/patg@buffy.netfrastructure.com> | 2006-07-27 14:02:58 -0400 |
---|---|---|
committer | unknown <pgalbraith/patg@buffy.netfrastructure.com> | 2006-07-27 14:02:58 -0400 |
commit | 8634c6b6925a9467a6a40ab94b237d3eb9b67e83 (patch) | |
tree | 322ea251accfaa6b31e9f5a92df833ebf440f5a4 /mysql-test/t/federated_transactions.test | |
parent | ffac54885d9661895e7e5138d7ddb65664b5df4e (diff) | |
download | mariadb-git-8634c6b6925a9467a6a40ab94b237d3eb9b67e83.tar.gz |
BUG #21118 "Federated Transaction test needs to have BDB switched to InnoDB"
Changed federated_transactions.test to use InnoDB instead of BDB
federated_transactions-slave.opt:
BitKeeper file /home/patg/mysql-build/mysql-5.1-engines-bug21118/mysql-test/t/federated_transactions-slave.opt
federated_transactions.result:
BUG #21118 "Federated Transaction test needs to have BDB switched to InnoDB"
New test results for InnoDB being remote transactional table
federated_transactions.test:
BUG #21118 "Federated Transaction test needs to have BDB switched to InnoDB"
Changed remote transactional table from BDB to InnoDB
mysql-test/t/federated_transactions.test:
BUG #21118 "Federated Transaction test needs to have BDB switched to InnoDB"
Changed remote transactional table from BDB to InnoDB
mysql-test/r/federated_transactions.result:
BUG #21118 "Federated Transaction test needs to have BDB switched to InnoDB"
New test results for InnoDB being remote transactional table
mysql-test/t/federated_transactions-slave.opt:
BitKeeper file /home/patg/mysql-build/mysql-5.1-engines-bug21118/mysql-test/t/federated_transactions-slave.opt
Diffstat (limited to 'mysql-test/t/federated_transactions.test')
-rw-r--r-- | mysql-test/t/federated_transactions.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/federated_transactions.test b/mysql-test/t/federated_transactions.test index 5095c8ce9c3..128813ed160 100644 --- a/mysql-test/t/federated_transactions.test +++ b/mysql-test/t/federated_transactions.test @@ -1,6 +1,6 @@ # should work with embedded server after mysqltest is fixed -- source include/not_embedded.inc -source include/have_bdb.inc; +#source include/have_innodb.inc; source include/federated.inc; connection slave; @@ -10,7 +10,7 @@ CREATE TABLE federated.t1 ( `id` int(20) NOT NULL, `name` varchar(32) NOT NULL default '' ) - DEFAULT CHARSET=latin1 ENGINE=BerkeleyDB; + DEFAULT CHARSET=latin1 ENGINE=InnoDB; connection master; DROP TABLE IF EXISTS federated.t1; |