diff options
author | monty@mishka.local <> | 2005-05-13 12:08:08 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2005-05-13 12:08:08 +0300 |
commit | 2d25da2a4ba244f4de26581e5b16518230f381df (patch) | |
tree | a23a9aecbe966e0226c4b4a1d389e021a4068e74 /include/thr_lock.h | |
parent | e2a6fe0f3b05e96021079e2cd3a5306b2395bf3c (diff) | |
download | mariadb-git-2d25da2a4ba244f4de26581e5b16518230f381df.tar.gz |
concurrent-insert can now be set to 2 for concurrent inserts when there is holes in the data file
myisam_max_extra_sort_file_size is depricated
Ensure that myisam_data_pointer_size is honoured when creating new MyISAM files
Changed default value of myisam_data_pointer_size from 4 to 6 to get rid of 'table-is-full' errors
Diffstat (limited to 'include/thr_lock.h')
-rw-r--r-- | include/thr_lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/thr_lock.h b/include/thr_lock.h index 947b17bf2b6..dc4f9968cb7 100644 --- a/include/thr_lock.h +++ b/include/thr_lock.h @@ -88,10 +88,10 @@ typedef struct st_thr_lock { struct st_lock_list read; struct st_lock_list write_wait; struct st_lock_list write; -/* write_lock_count is incremented for write locks and reset on read locks */ + /* write_lock_count is incremented for write locks and reset on read locks */ ulong write_lock_count; uint read_no_write_count; - void (*get_status)(void*); /* When one gets a lock */ + void (*get_status)(void*, int); /* When one gets a lock */ void (*copy_status)(void*,void*); void (*update_status)(void*); /* Before release of write */ my_bool (*check_status)(void *); |