Loading Docs/manual.texi +9 −3 Original line number Diff line number Diff line Loading @@ -46868,6 +46868,7 @@ users use this code as the rest of the code and because of this we are not yet 100% confident in this code. @menu * News-3.23.53:: Changes in release 3.23.53 * News-3.23.52:: Changes in release 3.23.52 * News-3.23.51:: Changes in release 3.23.51 * News-3.23.50:: Changes in release 3.23.50 Loading Loading @@ -46924,13 +46925,18 @@ not yet 100% confident in this code. * News-3.23.0:: Changes in release 3.23.0 @end menu @node News-3.23.52, News-3.23.51, 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 @itemize @bullet @item Fixed problem with @code{UNSIGNED BIGINT} on AIX (again). @end itemize @node News-3.23.52, News-3.23.51, News-3.23.53, News-3.23.x @appendixsubsec Changes in release 3.23.52 @itemize @bullet @item Fixed problem with @code{UNSIGNED BIGINT} on AIX. @item Fixed security bug when having an empty databasename in the @code{user.db} table. @item include/global.h +8 −2 Original line number Diff line number Diff line Loading @@ -104,9 +104,15 @@ #define _H_STRINGS #define _SYS_STREAM_H #define _AIX32_CURSES #define longlong2double(A) my_longlong2double(A) double my_longlong2double(unsigned long long A); #define ulonglong2double(A) my_ulonglong2double(A) #ifdef __cplusplus extern "C" { #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 */ #undef HAVE_SNPRINTF Loading mysys/my_port.c +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ double my_longlong2double(unsigned long long nr) double my_ulonglong2double(unsigned long long nr) { return (double) nr; } Loading Loading
Docs/manual.texi +9 −3 Original line number Diff line number Diff line Loading @@ -46868,6 +46868,7 @@ users use this code as the rest of the code and because of this we are not yet 100% confident in this code. @menu * News-3.23.53:: Changes in release 3.23.53 * News-3.23.52:: Changes in release 3.23.52 * News-3.23.51:: Changes in release 3.23.51 * News-3.23.50:: Changes in release 3.23.50 Loading Loading @@ -46924,13 +46925,18 @@ not yet 100% confident in this code. * News-3.23.0:: Changes in release 3.23.0 @end menu @node News-3.23.52, News-3.23.51, 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 @itemize @bullet @item Fixed problem with @code{UNSIGNED BIGINT} on AIX (again). @end itemize @node News-3.23.52, News-3.23.51, News-3.23.53, News-3.23.x @appendixsubsec Changes in release 3.23.52 @itemize @bullet @item Fixed problem with @code{UNSIGNED BIGINT} on AIX. @item Fixed security bug when having an empty databasename in the @code{user.db} table. @item
include/global.h +8 −2 Original line number Diff line number Diff line Loading @@ -104,9 +104,15 @@ #define _H_STRINGS #define _SYS_STREAM_H #define _AIX32_CURSES #define longlong2double(A) my_longlong2double(A) double my_longlong2double(unsigned long long A); #define ulonglong2double(A) my_ulonglong2double(A) #ifdef __cplusplus extern "C" { #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 */ #undef HAVE_SNPRINTF Loading
mysys/my_port.c +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ double my_longlong2double(unsigned long long nr) double my_ulonglong2double(unsigned long long nr) { return (double) nr; } Loading