Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
bf525010
Commit
bf525010
authored
Aug 16, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merged changelog
parents
0ab6e693
1990710a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
8 deletions
+12
-8
Docs/manual.texi
Docs/manual.texi
+3
-5
include/global.h
include/global.h
+8
-2
mysys/my_port.c
mysys/my_port.c
+1
-1
No files found.
Docs/manual.texi
View file @
bf525010
...
...
@@ -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
include/global.h
View file @
bf525010
...
...
@@ -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
...
...
mysys/my_port.c
View file @
bf525010
...
...
@@ -33,7 +33,7 @@
double
my_longlong2double
(
unsigned
long
long
nr
)
double
my_
u
longlong2double
(
unsigned
long
long
nr
)
{
return
(
double
)
nr
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment