Skip to content

Commit cd1c6c2

Browse files
committed
Bug #11762269: MAIN.LOWERCASE_TABLE3 ON MAC OSX
=============================================== After adding an "ENGINE=MYISAM" clause on a "CREATE TABLE" statement (to reflect that the default storage engine now is different from when the test was written), the test "main.lowercase_table3" passes on mysql-trunk.
1 parent 7826e01 commit cd1c6c2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

mysql-test/r/lowercase_table3.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
call mtr.add_suppression("InnoDB: Cannot open table test/BUG29839 from");
22
DROP TABLE IF EXISTS t1,T1;
3-
CREATE TABLE t1 (a INT);
3+
CREATE TABLE t1 (a INT) ENGINE=MYISAM;
44
SELECT * FROM T1;
55
a
66
FLUSH TABLES;

mysql-test/t/disabled.def

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
# Do not use any TAB characters for whitespace.
1010
#
1111
##############################################################################
12-
lowercase_table3 : Bug#11762269 2010-06-30 alik main.lowercase_table3 on Mac OSX
1312
read_many_rows_innodb : Bug#11748886 2010-11-15 mattiasj report already exists
1413
sum_distinct-big : Bug#11764126 2010-11-15 mattiasj was not tested
1514
archive-big : Bug#11817185 2011-03-10 Anitha Disabled since this leads to timeout on Solaris Sparc

mysql-test/t/lowercase_table3.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ DROP TABLE IF EXISTS t1,T1;
1818
#
1919
# This is actually an error, but ok as the user has forced this
2020
# by using --lower-case-table-names=0
21-
CREATE TABLE t1 (a INT);
21+
CREATE TABLE t1 (a INT) ENGINE=MYISAM;
2222
SELECT * FROM T1;
2323
FLUSH TABLES;
2424
DROP TABLE t1;

0 commit comments

Comments
 (0)