List:Commits« Previous MessageNext Message »
From:Sergei Golubchik Date:April 26 2006 7:40am
Subject:bk commit into 5.0 tree (serg:1.2099)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of serg. When serg 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.2099 06/04/25 22:39:59 serg@stripped +1 -0
  after merge

  sql/sql_parse.cc
    1.542 06/04/25 22:38:53 serg@stripped +2 -2
    after merge

# 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:	serg
# Host:	sergbook.mysql.com
# Root:	/usr/home/serg/Abk/mysql-5.0

--- 1.541/sql/sql_parse.cc	Tue Apr 25 21:32:25 2006
+++ 1.542/sql/sql_parse.cc	Tue Apr 25 22:38:53 2006
@@ -1598,13 +1598,13 @@
     uint db_len= *(uchar*) packet;
     if (db_len >= packet_length || db_len > NAME_LEN)
     {
-      send_error(thd, ER_UNKNOWN_COM_ERROR);
+      my_message(ER_UNKNOWN_COM_ERROR, ER(ER_UNKNOWN_COM_ERROR), MYF(0));
       break;
     }
     uint tbl_len= *(uchar*) (packet + db_len + 1);
     if (db_len+tbl_len+2 > packet_length || tbl_len > NAME_LEN)
     {
-      send_error(thd, ER_UNKNOWN_COM_ERROR);
+      my_message(ER_UNKNOWN_COM_ERROR, ER(ER_UNKNOWN_COM_ERROR), MYF(0));
       break;
     }
 
Thread
bk commit into 5.0 tree (serg:1.2099)Sergei Golubchik26 Apr