Below is the list of changes that have just been committed into a local
5.0 repository of iggy. When iggy 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, 2008-02-28 23:53:01-05:00, iggy@alf.(none) +1 -0
Bug #24992 Enabling Shared Memory support on Windows x64 causes client to fail
- Mistaken macro defintions cause mysys to read packets in the wrong order.
include/my_global.h@stripped, 2008-02-28 23:52:59-05:00, iggy@alf.(none) +2 -2
Bug #24992 Enabling Shared Memory support on Windows x64 causes client to fail
- Use low byte order optimizations for Windows.
diff -Nrup a/include/my_global.h b/include/my_global.h
--- a/include/my_global.h 2008-02-27 16:17:03 -05:00
+++ b/include/my_global.h 2008-02-28 23:52:59 -05:00
@@ -1053,7 +1053,7 @@ typedef char bool; /* Ordinary boolean
*/
/* Optimized store functions for Intel x86 */
-#if defined(__i386__) || (defined(_WIN32) && !defined(_WIN64))
+#if defined(__i386__) || defined(_WIN32)
#define sint2korr(A) (*((int16 *) (A)))
#define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? \
(((uint32) 255L << 24) | \
@@ -1242,7 +1242,7 @@ do { doubleget_union _tmp; \
#define float8store(V,M) doublestore((V),(M))
#endif /* WORDS_BIGENDIAN */
-#endif /* __i386__ OR _WIN32 AND !_WIN64 */
+#endif /* __i386__ OR _WIN32 */
/*
Macro for reading 32-bit integer from network byte order (big-endian)
Thread |
---|
• bk commit into 5.0 tree (iggy:1.2579) BUG#24992 | Ignacio Galarza | 29 Feb |