List:Commits« Previous MessageNext Message »
From:msvensson Date:June 1 2007 11:39am
Subject:bk commit into 5.0 tree (msvensson:1.2499)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson 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-06-01 13:39:54+02:00, msvensson@pilot.(none) +2 -0
  Add missing semicolon after connect command

  mysql-test/t/grant.test@stripped, 2007-06-01 13:39:53+02:00, msvensson@pilot.(none) +1 -1
    Add missing semicolon after connect command

  mysql-test/t/rpl_packet.test@stripped, 2007-06-01 13:39:53+02:00, msvensson@pilot.(none) +1 -1
    Add missing semicolon after connect command

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	msvensson
# Host:	pilot.(none)
# Root:	/data/msvensson/mysql/bug28497/my50-bug28497

--- 1.4/mysql-test/t/rpl_packet.test	2007-03-16 15:25:15 +01:00
+++ 1.5/mysql-test/t/rpl_packet.test	2007-06-01 13:39:53 +02:00
@@ -56,7 +56,7 @@ START SLAVE;
 
 # Reconnect to master for new setting to take effect
 disconnect master;
-connect (master, localhost, root)
+connect (master, localhost, root);
 connection master;
 
 CREATE TABLe `t1` (`f1` LONGTEXT) ENGINE=MyISAM;

--- 1.56/mysql-test/t/grant.test	2007-05-11 22:45:22 +02:00
+++ 1.57/mysql-test/t/grant.test	2007-06-01 13:39:53 +02:00
@@ -890,7 +890,7 @@ REVOKE EXECUTE ON PROCEDURE t1 FROM some
 # Bug #6774: Replication fails with Wrong usage of DB GRANT and GLOBAL PRIVILEGES
 #
 # Check if GRANT ... ON * ... fails when no database is selected
-connect (con1, localhost, root,,*NO-ONE*)
+connect (con1, localhost, root,,*NO-ONE*);
 connection con1;
 --error ER_NO_DB_ERROR
 GRANT PROCESS ON * TO user@localhost;
Thread
bk commit into 5.0 tree (msvensson:1.2499)msvensson1 Jun