mirror of
https://github.com/MariaDB/server.git
synced 2025-11-28 17:36:30 +03:00
merged with fix-mysql-test
This commit is contained in:
@@ -1,62 +1,42 @@
|
||||
This part of the innodb-index test causes mysqld to print some warnings
|
||||
and subsequently the whole mysql-test suite to fail.
|
||||
|
||||
A permanent solution is probably to remove the printouts from the source
|
||||
code or to somehow tell the mysql-test suite that warnings are expected.
|
||||
Currently we simply do not execute the problematic tests. Please
|
||||
coordinate a permanent solution with Marko, who added those tests.
|
||||
|
||||
This cannot be proposed to MySQL because it touches files that are not
|
||||
in the MySQL source repository.
|
||||
|
||||
Index: storage/innobase/mysql-test/innodb-index.result
|
||||
===================================================================
|
||||
--- storage/innobase/mysql-test/innodb-index.result (revision 2870)
|
||||
+++ storage/innobase/mysql-test/innodb-index.result (working copy)
|
||||
@@ -43,19 +43,12 @@ t1 CREATE TABLE `t1` (
|
||||
`b` int(11) DEFAULT NULL,
|
||||
`c` char(10) NOT NULL,
|
||||
`d` varchar(20) DEFAULT NULL,
|
||||
KEY `d2` (`d`),
|
||||
KEY `b` (`b`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
||||
-CREATE TABLE `t1#1`(a INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
-alter table t1 add unique index (c), add index (d);
|
||||
-ERROR HY000: Table 'test.t1#1' already exists
|
||||
-rename table `t1#1` to `t1#2`;
|
||||
-alter table t1 add unique index (c), add index (d);
|
||||
-ERROR HY000: Table 'test.t1#2' already exists
|
||||
-drop table `t1#2`;
|
||||
alter table t1 add unique index (c), add index (d);
|
||||
show create table t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
`a` int(11) NOT NULL,
|
||||
`b` int(11) DEFAULT NULL,
|
||||
Index: storage/innobase/mysql-test/innodb-index.test
|
||||
===================================================================
|
||||
--- storage/innobase/mysql-test/innodb-index.test (revision 2870)
|
||||
+++ storage/innobase/mysql-test/innodb-index.test (working copy)
|
||||
@@ -14,22 +14,12 @@ select * from t1 force index (d2) order
|
||||
--error ER_DUP_ENTRY
|
||||
alter table t1 add unique index (b);
|
||||
show create table t1;
|
||||
alter table t1 add index (b);
|
||||
show create table t1;
|
||||
--- mysql-test/t/innodb-index.test.orig 2009-04-16 22:12:38.000000000 +0000
|
||||
+++ mysql-test/t/innodb-index.test 2009-04-16 22:16:58.000000000 +0000
|
||||
@@ -344,6 +344,11 @@
|
||||
|
||||
-# Check how existing tables interfere with temporary tables.
|
||||
-CREATE TABLE `t1#1`(a INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
-
|
||||
---error 156
|
||||
-alter table t1 add unique index (c), add index (d);
|
||||
-rename table `t1#1` to `t1#2`;
|
||||
---error 156
|
||||
-alter table t1 add unique index (c), add index (d);
|
||||
-drop table `t1#2`;
|
||||
-
|
||||
alter table t1 add unique index (c), add index (d);
|
||||
show create table t1;
|
||||
explain select * from t1 force index(c) order by c;
|
||||
alter table t1 add primary key (a), drop index c;
|
||||
show create table t1;
|
||||
--error ER_MULTIPLE_PRI_KEY
|
||||
let $per_table=`select @@innodb_file_per_table`;
|
||||
let $format=`select @@innodb_file_format`;
|
||||
+
|
||||
+set @old_innodb_file_per_table=@@innodb_file_per_table;
|
||||
+set @old_innodb_file_format=@@innodb_file_format;
|
||||
+set @old_innodb_file_format_check=@@innodb_file_format_check;
|
||||
+
|
||||
set global innodb_file_per_table=on;
|
||||
set global innodb_file_format='Barracuda';
|
||||
# Test creating a table that could lead to undo log overflow.
|
||||
@@ -499,3 +504,8 @@
|
||||
|
||||
DROP TABLE t2;
|
||||
DROP TABLE t1;
|
||||
+
|
||||
+set global innodb_file_per_table=@old_innodb_file_per_table;
|
||||
+set global innodb_file_format=@old_innodb_file_format;
|
||||
+set global innodb_file_format_check=@old_innodb_file_format_check;
|
||||
+
|
||||
--- mysql-test/r/innodb-index.result.orig 2009-04-16 22:18:18.000000000 +0000
|
||||
+++ mysql-test/r/innodb-index.result 2009-04-16 22:18:47.000000000 +0000
|
||||
@@ -877,6 +877,9 @@
|
||||
44
|
||||
commit;
|
||||
drop table t1;
|
||||
+set @old_innodb_file_per_table=@@innodb_file_per_table;
|
||||
+set @old_innodb_file_format=@@innodb_file_format;
|
||||
+set @old_innodb_file_format_check=@@innodb_file_format_check;
|
||||
set global innodb_file_per_table=on;
|
||||
set global innodb_file_format='Barracuda';
|
||||
create table t1(a blob,b blob,c blob,d blob,e blob,f blob,g blob,h blob,
|
||||
@@ -1125,3 +1128,6 @@
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
||||
DROP TABLE t2;
|
||||
DROP TABLE t1;
|
||||
+set global innodb_file_per_table=@old_innodb_file_per_table;
|
||||
+set global innodb_file_format=@old_innodb_file_format;
|
||||
+set global innodb_file_format_check=@old_innodb_file_format_check;
|
||||
|
||||
Reference in New Issue
Block a user