summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2000-09-21 01:58:38 +0300
committermonty@donna.mysql.com <>2000-09-21 01:58:38 +0300
commitdf280335b0c026525a7d7f6164247cda63967067 (patch)
treee2dd869fb38dfdf7e26817e7b0f7a7a6add22758 /include
parent80d200e18b2b8d4e3f5528895f97eee49aede9a5 (diff)
downloadmariadb-git-df280335b0c026525a7d7f6164247cda63967067.tar.gz
Fix for SAFE_MUTEX + MERGE tables
Diffstat (limited to 'include')
-rw-r--r--include/my_pthread.h1
-rw-r--r--include/myisammrg.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h
index 71ad5e42bf2..69d472bf266 100644
--- a/include/my_pthread.h
+++ b/include/my_pthread.h
@@ -60,6 +60,7 @@ typedef int pthread_mutexattr_t;
#define pthread_handler_decl(A,B) unsigned __cdecl A(void *B)
typedef unsigned (__cdecl *pthread_handler)(void *);
+void win_pthread_init(void);
int win_pthread_setspecific(void *A,void *B,uint length);
int pthread_create(pthread_t *,pthread_attr_t *,pthread_handler,void *);
int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr);
diff --git a/include/myisammrg.h b/include/myisammrg.h
index 6b1124fa180..a797c954614 100644
--- a/include/myisammrg.h
+++ b/include/myisammrg.h
@@ -59,7 +59,7 @@ typedef struct st_myrg_info
ulonglong records; /* records in tables */
ulonglong del; /* Removed records */
ulonglong data_file_length;
- uint tables,options,reclength;
+ uint tables,options,reclength,keys;
my_bool cache_in_use;
LIST open_list;
QUEUE by_key;