List:Commits« Previous MessageNext Message »
From:knielsen Date:February 7 2006 3:30pm
Subject:bk commit into 5.1 tree (knielsen:1.2131)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of knielsen. When knielsen 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.2131 06/02/07 16:30:26 knielsen@stripped +1 -0
  Add cast to fix Windows compilation.

  sql/sql_show.cc
    1.298 06/02/07 16:11:20 knielsen@stripped +1 -1
    Add cast for Windows.

# 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:	knielsen
# Host:	rt.int.sifira.dk
# Root:	/usr/local/mysql/mysql-5.1-winfix

--- 1.297/sql/sql_show.cc	2006-02-01 14:52:27 +01:00
+++ 1.298/sql/sql_show.cc	2006-02-07 16:11:20 +01:00
@@ -4004,7 +4004,7 @@
             store(thd->lex->select_lex.db, strlen(thd->lex->select_lex.db), scs);
       key_len+= event_table->key_info->key_part[1].store_length;
     }
-    if (!(key_buf= alloc_root(thd->mem_root, key_len)))
+    if (!(key_buf= (byte *)alloc_root(thd->mem_root, key_len)))
     {
       ret= 1;
       goto err;
Thread
bk commit into 5.1 tree (knielsen:1.2131)knielsen7 Feb