List:Commits« Previous MessageNext Message »
From:bar Date:May 27 2008 9:19am
Subject:bk commit into 5.0 tree (bar:1.2613) BUG#27934
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of bar.  When bar 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, 2008-05-27 14:18:53+05:00, bar@stripped +2 -0
  Bug#27934 test client_xml misssing initialization
  Problem: missing initialization, if the previous test
  fails leaving table t1, client_xml fails as well.
  Fix: adding initialization.

  mysql-test/r/client_xml.result@stripped, 2008-05-27 14:18:45+05:00, bar@stripped +1 -0
    Fixing test

  mysql-test/t/client_xml.test@stripped, 2008-05-27 14:18:45+05:00, bar@stripped +4 -0
    Fixing test

diff -Nrup a/mysql-test/r/client_xml.result b/mysql-test/r/client_xml.result
--- a/mysql-test/r/client_xml.result	2007-04-09 17:53:08 +05:00
+++ b/mysql-test/r/client_xml.result	2008-05-27 14:18:45 +05:00
@@ -1,3 +1,4 @@
+drop table if exists t1;
 create table t1 (
 `a&b` int,
 `a<b` int,
diff -Nrup a/mysql-test/t/client_xml.test b/mysql-test/t/client_xml.test
--- a/mysql-test/t/client_xml.test	2007-04-09 17:53:08 +05:00
+++ b/mysql-test/t/client_xml.test	2008-05-27 14:18:45 +05:00
@@ -1,6 +1,10 @@
 # Can't run with embedded server
 -- source include/not_embedded.inc
 
+--disable_warnings
+drop table if exists t1;
+--enable_warnings
+
 # Test of the xml output of the 'mysql' and 'mysqldump' clients -- makes
 # sure that basic encoding issues are handled properly
 create table t1 (
Thread
bk commit into 5.0 tree (bar:1.2613) BUG#27934bar27 May