List:Commits« Previous MessageNext Message »
From:konstantin Date:June 1 2007 10:17am
Subject:bk commit into 5.1 tree (kostja:1.2536)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of kostja. When kostja 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 14:17:23+04:00, kostja@bodhi.(none) +1 -0
  Fix a warning.

  sql/sp.cc@stripped, 2007-06-01 14:17:21+04:00, kostja@bodhi.(none) +3 -1
    Fix a warning "field precision should have type "int", 
    but argument 2 has type "size_t"

# 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:	kostja
# Host:	bodhi.(none)
# Root:	/opt/local/work/mysql-5.1-runtime

--- 1.153/sql/sp.cc	2007-06-01 12:12:02 +04:00
+++ 1.154/sql/sp.cc	2007-06-01 14:17:21 +04:00
@@ -1017,7 +1017,9 @@
                      &thd->sp_proc_cache : &thd->sp_func_cache;
 
   DBUG_ENTER("sp_show_create_routine");
-  DBUG_PRINT("enter", ("name: %.*s", name->m_name.length, name->m_name.str));
+  DBUG_PRINT("enter", ("name: %.*s",
+                       (int) name->m_name.length,
+                       name->m_name.str));
 
   DBUG_ASSERT(type == TYPE_ENUM_PROCEDURE ||
               type == TYPE_ENUM_FUNCTION);
Thread
bk commit into 5.1 tree (kostja:1.2536)konstantin1 Jun