List:Internals« Previous MessageNext Message »
From:Georg Richter Date:July 29 2005 12:51pm
Subject:bk commit into 4.1 tree (georg:1.2361) BUG#12665
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 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.2361 05/07/29 14:51:08 georg@stripped +1 -0
  fix for bug#12665
  
  macro floatget was missing in config-win.h

  include/config-win.h
    1.54 05/07/29 14:51:02 georg@stripped +1 -0
    fix for bug#12665
    
    macro floatget was missing in config-win.h

# 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-4.1

--- 1.53/include/config-win.h	2005-05-24 14:46:23 +02:00
+++ 1.54/include/config-win.h	2005-07-29 14:51:02 +02:00
@@ -283,6 +283,7 @@
 #define doublestore(T,V) { *((long *) T) = *((long*) &V); \
 			   *(((long *) T)+1) = *(((long*) &V)+1); }
 #define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); }
+#define floatget(V,M) memcpy((byte*) &V,(byte*) (M),sizeof(float))
 #define floatstore(T,V) memcpy((byte*)(T), (byte*)(&V), sizeof(float))
 #define float8get(V,M) doubleget((V),(M))
 #define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
Thread
bk commit into 4.1 tree (georg:1.2361) BUG#12665Georg Richter29 Jul