diff options
author | monty@mashka.mysql.fi <> | 2003-01-28 08:38:28 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-28 08:38:28 +0200 |
commit | 689578a0997f54c590bcf4791e30710602851bc4 (patch) | |
tree | b916d4acfbe4f32ab06b052fd06c072f858bdce1 /libmysql/manager.c | |
parent | 1bdd1d0626fdb8f858a3c4bf82e0064ee19b042d (diff) | |
download | mariadb-git-689578a0997f54c590bcf4791e30710602851bc4.tar.gz |
Fixes for Netware
Call pthread_mutex_destroy() on not used mutex.
Changed comments in .h and .c files from // -> /* */
Added detection of mutex on which one didn't call pthread_mutex_destroy()
Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression"
Added optimisation for ORDER BY NULL
Diffstat (limited to 'libmysql/manager.c')
-rw-r--r-- | libmysql/manager.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmysql/manager.c b/libmysql/manager.c index 22b109caea8..d4bd8d5520b 100644 --- a/libmysql/manager.c +++ b/libmysql/manager.c @@ -34,6 +34,10 @@ #if defined(OS2) # include <sys/un.h> +#elif defined(__NETWARE__) +#include <netdb.h> +#include <sys/select.h> +#include <sys/utsname.h> #elif !defined( __WIN__) #include <sys/resource.h> #ifdef HAVE_SYS_UN_H |