summaryrefslogtreecommitdiff
path: root/mysql-test/t/lowercase_table3.test
diff options
context:
space:
mode:
authorunknown <svoj@mysql.com/june.mysql.com>2007-07-18 13:55:50 +0500
committerunknown <svoj@mysql.com/june.mysql.com>2007-07-18 13:55:50 +0500
commit082c3cb46a5e6e4a5ca5375ba663f3417be72c84 (patch)
treea655dea51b67a46432f1e8a51711fab647176332 /mysql-test/t/lowercase_table3.test
parent342a894527ef7d4df3fc620c87691cde8317d43f (diff)
downloadmariadb-git-082c3cb46a5e6e4a5ca5375ba663f3417be72c84.tar.gz
BUG#29839 - lowercase_table3.test: Cannot find table test/T1 from
the internal data dictiona - re-enabled lowercase_table3 test; - added a rule to throw away expected warning to mtr_report.pl; - fixed a test case to produce unique warning. mysql-test/lib/mtr_report.pl: Throw away a warning produced by BUG#29839 test. mysql-test/r/lowercase_table3.result: Modified a test case to throw away expected warning. mysql-test/t/disabled.def: Re-enabled lowercase_table3.test. mysql-test/t/lowercase_table3.test: Modified a test case to throw away expected warning.
Diffstat (limited to 'mysql-test/t/lowercase_table3.test')
-rw-r--r--mysql-test/t/lowercase_table3.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/lowercase_table3.test b/mysql-test/t/lowercase_table3.test
index 75f6e5188c5..51385b4b178 100644
--- a/mysql-test/t/lowercase_table3.test
+++ b/mysql-test/t/lowercase_table3.test
@@ -27,9 +27,9 @@ flush tables;
# storing things in lower case.
#
-CREATE TABLE t1 (a int) ENGINE=INNODB;
+CREATE TABLE bug29839 (a int) ENGINE=INNODB;
--error 1146
-SELECT * from T1;
-drop table t1;
+SELECT * from BUG29839;
+drop table bug29839;
# End of 4.1 tests