Commit bf525010 authored by unknown's avatar unknown

merged changelog

parents 0ab6e693 1990710a
...@@ -46927,18 +46927,16 @@ not yet 100% confident in this code. ...@@ -46927,18 +46927,16 @@ not yet 100% confident in this code.
@node News-3.23.53, News-3.23.52, News-3.23.x, News-3.23.x @node News-3.23.53, News-3.23.52, News-3.23.x, News-3.23.x
@appendixsubsec Changes in release 3.23.53 @appendixsubsec Changes in release 3.23.53
@itemize @bullet @itemize @bullet
@item @item
Add multithreaded stress tests for InnoDB Fixed problem with @code{UNSIGNED BIGINT} on AIX (again).
@item
Multithreaded stress tests for InnoDB.
@end itemize @end itemize
@appendixsubsec Changes in release 3.23.52 @appendixsubsec Changes in release 3.23.52
@itemize @bullet @itemize @bullet
@item @item
Fixed problem with @code{UNSIGNED BIGINT} on AIX.
@item
Fixed security bug when having an empty databasename in the @code{user.db} Fixed security bug when having an empty databasename in the @code{user.db}
table. table.
@item @item
...@@ -104,9 +104,15 @@ ...@@ -104,9 +104,15 @@
#define _H_STRINGS #define _H_STRINGS
#define _SYS_STREAM_H #define _SYS_STREAM_H
#define _AIX32_CURSES #define _AIX32_CURSES
#define longlong2double(A) my_longlong2double(A) #define ulonglong2double(A) my_ulonglong2double(A)
double my_longlong2double(unsigned long long A); #ifdef __cplusplus
extern "C" {
#endif #endif
double my_ulonglong2double(unsigned long long A);
#ifdef __cplusplus
}
#endif
#endif /* _AIX */
#ifdef HAVE_BROKEN_SNPRINTF /* HPUX 10.20 don't have this defined */ #ifdef HAVE_BROKEN_SNPRINTF /* HPUX 10.20 don't have this defined */
#undef HAVE_SNPRINTF #undef HAVE_SNPRINTF
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
double my_longlong2double(unsigned long long nr) double my_ulonglong2double(unsigned long long nr)
{ {
return (double) nr; return (double) nr;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment