List:Commits« Previous MessageNext Message »
From:Sergey Vojtovich Date:July 18 2007 8:12am
Subject:bk commit into 5.1 tree (svoj:1.2555) BUG#29839
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of svoj. When svoj does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-07-18 13:12:47+05:00, svoj@stripped +4 -0
  BUG#29839 - lowercase_table3.test: Cannot find table test/T1 from
              the internal data dictiona
  - re-enabled lowercase_table3 test;
  - added a rule to through away expected warning to mtr_report.pl;
  - fixed a test case to produce unique warning.

  mysql-test/lib/mtr_report.pl@stripped, 2007-07-18 13:12:44+05:00, svoj@stripped +5 -1
    Through away a warning produced by BUG#29839 test.

  mysql-test/r/lowercase_table3.result@stripped, 2007-07-18 13:12:44+05:00, svoj@stripped +4 -4
    Modified a test case to through away expected warning.

  mysql-test/t/disabled.def@stripped, 2007-07-18 13:12:44+05:00, svoj@stripped +0 -1
    Re-enabled lowercase_table3.test.

  mysql-test/t/lowercase_table3.test@stripped, 2007-07-18 13:12:44+05:00, svoj@stripped +3 -3
    Modified a test case to through away expected warning.

diff -Nrup a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl
--- a/mysql-test/lib/mtr_report.pl	2007-07-16 15:09:43 +05:00
+++ b/mysql-test/lib/mtr_report.pl	2007-07-18 13:12:44 +05:00
@@ -362,7 +362,11 @@ sub mtr_report_stats ($) {
 
                 # BUG#29807 - innodb_mysql.test: Cannot find table test/t2
                 #             from the internal data dictionary
-                /Cannot find table test\/bug29807 from the internal data dictionary/
+                /Cannot find table test\/bug29807 from the internal data dictionary/ or
+
+                # BUG#29839 - lowercase_table3.test: Cannot find table test/T1
+                #             from the internal data dictiona
+                /Cannot find table test\/BUG29839 from the internal data dictionary/
 	       )
             {
               next;                       # Skip these lines
diff -Nrup a/mysql-test/r/lowercase_table3.result b/mysql-test/r/lowercase_table3.result
--- a/mysql-test/r/lowercase_table3.result	2006-09-29 19:04:27 +05:00
+++ b/mysql-test/r/lowercase_table3.result	2007-07-18 13:12:44 +05:00
@@ -4,7 +4,7 @@ SELECT * from T1;
 a
 drop table t1;
 flush tables;
-CREATE TABLE t1 (a int) ENGINE=INNODB;
-SELECT * from T1;
-ERROR 42S02: Table 'test.T1' doesn't exist
-drop table t1;
+CREATE TABLE bug29839 (a int) ENGINE=INNODB;
+SELECT * from BUG29839;
+ERROR 42S02: Table 'test.BUG29839' doesn't exist
+drop table bug29839;
diff -Nrup a/mysql-test/t/disabled.def b/mysql-test/t/disabled.def
--- a/mysql-test/t/disabled.def	2007-07-17 13:20:30 +05:00
+++ b/mysql-test/t/disabled.def	2007-07-18 13:12:44 +05:00
@@ -25,4 +25,3 @@ ctype_big5               : BUG#26711 200
 
 mysql_upgrade        : Bug#28560 test links to /usr/local/mysql/lib libraries, causes non-determinism and failures on ABI breakage
 federated_innodb     : Bug#29522 failed assertion in binlog_close_connection()
-lowercase_table3     : Bug#29839 2007-07-17 ingo Cannot find table test/T1 from the internal data dictionary
diff -Nrup a/mysql-test/t/lowercase_table3.test b/mysql-test/t/lowercase_table3.test
--- a/mysql-test/t/lowercase_table3.test	2006-10-19 14:34:31 +05:00
+++ b/mysql-test/t/lowercase_table3.test	2007-07-18 13:12:44 +05:00
@@ -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
Thread
bk commit into 5.1 tree (svoj:1.2555) BUG#29839Sergey Vojtovich18 Jul
  • Re: bk commit into 5.1 tree (svoj:1.2555) BUG#29839Ingo Strüwing18 Jul