List:Internals« Previous MessageNext Message »
From:Jim Winstead Date:April 28 2005 2:05am
Subject:bk commit into 4.1 tree (jimw:1.2210) BUG#9947
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of jimw. When jimw 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
  1.2210 05/04/27 17:05:15 jimw@stripped +1 -0
  Clean up error message for connections-per-hour user limit
  being exceeded. (Bug #9947)

  sql/sql_parse.cc
    1.433 05/04/27 16:48:39 jimw@stripped +1 -1
    Fix error message when connections per hour has been exceeded

# 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:	jimw
# Host:	rama.(none)
# Root:	/home/jimw/my/mysql-4.1-9947

--- 1.432/sql/sql_parse.cc	2005-04-01 19:00:11 -08:00
+++ 1.433/sql/sql_parse.cc	2005-04-27 16:48:39 -07:00
@@ -449,7 +449,7 @@
       uc->user_resources.connections <= uc->conn_per_hour)
   {
     net_printf(thd, ER_USER_LIMIT_REACHED, uc->user,
-	       "max_connections",
+	       "max_connections_per_hour",
 	       (long) uc->user_resources.connections);
     error=1;
     goto end;
Thread
bk commit into 4.1 tree (jimw:1.2210) BUG#9947Jim Winstead28 Apr