diff options
author | Sergei Golubchik <sergii@pisem.net> | 2011-07-18 23:04:24 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2011-07-18 23:04:24 +0200 |
commit | 4e46d8e5bff140f2549841167dc4b65a3c0a645d (patch) | |
tree | c6612dcc1d0fbd801c084e6c36307d9e5913a293 /mysql-test/t/innodb_bug46676.test | |
parent | 9a02c69f5c6766eaf552284a2a4dd0f1d26ecd2c (diff) | |
parent | d4d7a8fa62c406be73f6c0f6d75e795293db548b (diff) | |
download | mariadb-git-4e46d8e5bff140f2549841167dc4b65a3c0a645d.tar.gz |
merge with xtradb-5.5.15
fix test cases
Diffstat (limited to 'mysql-test/t/innodb_bug46676.test')
-rw-r--r-- | mysql-test/t/innodb_bug46676.test | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/mysql-test/t/innodb_bug46676.test b/mysql-test/t/innodb_bug46676.test deleted file mode 100644 index 440666c4226..00000000000 --- a/mysql-test/t/innodb_bug46676.test +++ /dev/null @@ -1,16 +0,0 @@ -# This is the test for bug 46676: mysqld got exception 0xc0000005 -# It is reproducible with InnoDB plugin 1.0.4 + MySQL 5.1.37. -# But no longer reproducible after MySQL 5.1.38 (with plugin 1.0.5). - ---source include/have_innodb.inc - -SET foreign_key_checks=0; -CREATE TABLE t1 (id int, foreign key (id) references t2(id)) ENGINE=INNODB; -CREATE TABLE t2 (id int, foreign key (id) references t1(id)) ENGINE=INNODB; -SET foreign_key_checks=1; - -# Server crashes -SELECT COUNT(*) FROM information_schema.key_column_usage WHERE REFERENCED_TABLE_NAME in ('t1', 't2'); - -SET foreign_key_checks=0; -DROP TABLE t1, t2; |