List:Internals« Previous MessageNext Message »
From:Georg Richter Date:April 27 2005 11:54am
Subject:bk commit into 5.0 tree (georg:1.1887)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of georg. When georg 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.1887 05/04/27 13:54:42 georg@stripped +1 -0
  fix for compile error (Windows)

  sql/item_func.h
    1.107 05/04/27 13:54:36 georg@stripped +1 -1
    fix for compile error (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:	georg
# Host:	lmy002.wdf.sap.corp
# Root:	/home/georg/work/mysql/prod/mysql-5.0-build

--- 1.106/sql/item_func.h	2005-04-20 19:08:27 +02:00
+++ 1.107/sql/item_func.h	2005-04-27 13:54:36 +02:00
@@ -1318,7 +1318,7 @@
   longlong val_int()
   {
     if (execute(&result_field))
-      return 0LL;
+      return (longlong) 0;
     return result_field->val_int();   
   }
 
Thread
bk commit into 5.0 tree (georg:1.1887)Georg Richter27 Apr