summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-08-16 12:58:02 +0300
committerunknown <monty@hundin.mysql.fi>2002-08-16 12:58:02 +0300
commita7894a2548cb770553b9ec6a339cef53be1ed93f (patch)
tree1c8fa4a03165c941b25e7eda32a78a3076d08052
parentd09a5e173ff8f02d4e0d6a0c499872e113b6dd43 (diff)
parenta36419b7f584fce00b60c261a92dbb6e9fba4d14 (diff)
downloadmariadb-git-a7894a2548cb770553b9ec6a339cef53be1ed93f.tar.gz
merged changelog
-rw-r--r--Docs/manual.texi8
-rw-r--r--include/global.h10
-rw-r--r--mysys/my_port.c2
3 files changed, 12 insertions, 8 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index b49f08c889c..f312e35e135 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -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
@appendixsubsec Changes in release 3.23.53
-
@itemize @bullet
@item
-Add multithreaded stress tests for InnoDB
+Fixed problem with @code{UNSIGNED BIGINT} on AIX (again).
+@item
+Multithreaded stress tests for InnoDB.
@end itemize
@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
diff --git a/include/global.h b/include/global.h
index a6cc561fb0a..8067fe5f38b 100644
--- a/include/global.h
+++ b/include/global.h
@@ -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
diff --git a/mysys/my_port.c b/mysys/my_port.c
index a9778875850..bf5dbcbace1 100644
--- a/mysys/my_port.c
+++ b/mysys/my_port.c
@@ -33,7 +33,7 @@
-double my_longlong2double(unsigned long long nr)
+double my_ulonglong2double(unsigned long long nr)
{
return (double) nr;
}