diff options
author | Satya B <satya.bn@sun.com> | 2009-10-05 16:39:07 +0530 |
---|---|---|
committer | Satya B <satya.bn@sun.com> | 2009-10-05 16:39:07 +0530 |
commit | cfae755d7de846581f820064b7cc83502f7c16d8 (patch) | |
tree | f42746ed84912c5fbcb4aa71c24589ba1f11d776 /mysql-test/lib/mtr_cases.pm | |
parent | 67ac3fac7fe9b1fef7170d7a8581d4b395e095ef (diff) | |
download | mariadb-git-cfae755d7de846581f820064b7cc83502f7c16d8.tar.gz |
Applying InnoDB snapshot 5.1-ss5921, Part 1. Fixes BUG#46000
1. BUG#46000 - using index called GEN_CLUST_INDEX crashes server
Detailed revision comments:
r5895 | jyang | 2009-09-15 03:39:21 +0300 (Tue, 15 Sep 2009) | 5 lines
branches/5.1: Disallow creating index with the name of
"GEN_CLUST_INDEX" which is reserved for the default system
primary index. (Bug #46000) rb://149 approved by Marko Makela.
Diffstat (limited to 'mysql-test/lib/mtr_cases.pm')
-rw-r--r-- | mysql-test/lib/mtr_cases.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/lib/mtr_cases.pm b/mysql-test/lib/mtr_cases.pm index 27165d56b50..5c2d2d5380e 100644 --- a/mysql-test/lib/mtr_cases.pm +++ b/mysql-test/lib/mtr_cases.pm @@ -507,6 +507,8 @@ sub collect_one_suite($) next if ($test->{'name'} eq 'sys_vars.innodb_lock_wait_timeout_basic'); # Diff around innodb_thread_concurrency variable next if ($test->{'name'} eq 'sys_vars.innodb_thread_concurrency_basic'); + # Disable for Innodb Plugin until the fix for Plugin is received + next if ($test->{'name'} eq 'main.innodb_bug46000'); # Copy test options my $new_test= My::Test->new(); while (my ($key, $value) = each(%$test)) |