diff options
author | monty@mashka.mysql.fi <> | 2002-10-29 22:56:30 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-10-29 22:56:30 +0200 |
commit | 5343d4c96993e31a3377be07e9c97aee27784461 (patch) | |
tree | b93d36288a2bf44b78ebae18e00a9062e08a24bd /include/my_global.h | |
parent | 1f10e446778c4f54778da2d850b9cdc34db63d16 (diff) | |
download | mariadb-git-5343d4c96993e31a3377be07e9c97aee27784461.tar.gz |
Added --skip-safemalloc to mysqltest
Added bug fix from 3.23 for AIX 4.3.3 and gcc 3.x
Small change in EXCHANGE output
Propagate open-files-limit from mysqld_safe -> mysqld
Fixed speed bug in GROUP BY
Added quotes around database name in CREATE DATABASE db_name (for binary log)
Diffstat (limited to 'include/my_global.h')
-rw-r--r-- | include/my_global.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/my_global.h b/include/my_global.h index d1b3c516555..8b899ff17ed 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -119,7 +119,16 @@ #define _H_STRINGS #define _SYS_STREAM_H /* #define _AIX32_CURSES */ /* XXX: this breaks AIX 4.3.3 (others?). */ +#define ulonglong2double(A) my_ulonglong2double(A) +#define my_off_t2double(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 |