diff options
author | monty@hundin.mysql.fi <> | 2002-06-28 17:26:11 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-06-28 17:26:11 +0300 |
commit | 578a9d9901fe19723a028854b6d2774a778c0740 (patch) | |
tree | 27f0f967ee5f642c6cb7ecfab977612a3d7e57d3 /include/myisam.h | |
parent | 20005fad016bf602c747f5cd42ab0f5fd4fa75b3 (diff) | |
download | mariadb-git-578a9d9901fe19723a028854b6d2774a778c0740.tar.gz |
Updated windows files (VC++ files and winmysqladmin).
Portability fixes.
Removed compiler warnings.
Diffstat (limited to 'include/myisam.h')
-rw-r--r-- | include/myisam.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/myisam.h b/include/myisam.h index 32e9225efdf..9b5d21a1844 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -351,6 +351,7 @@ typedef struct st_mi_check_param char *op_name; } MI_CHECK; + typedef struct st_sort_info { MI_INFO *info; @@ -368,6 +369,7 @@ typedef struct st_sort_info pthread_cond_t cond; } SORT_INFO; + typedef struct st_mi_sort_param { pthread_t thr; @@ -391,6 +393,7 @@ typedef struct st_mi_sort_param void (*lock_in_memory)(MI_CHECK *); } MI_SORT_PARAM; + /* functions in mi_check */ void myisamchk_init(MI_CHECK *param); int chk_status(MI_CHECK *param, MI_INFO *info); @@ -422,8 +425,6 @@ int movepoint(MI_INFO *info,byte *record,my_off_t oldpos, int sort_write_record(MI_SORT_PARAM *sort_param); int write_data_suffix(SORT_INFO *sort_info, my_bool fix_datafile); int _create_index_by_sort(MI_SORT_PARAM *info,my_bool no_messages, ulong); -void *_thr_find_all_keys(MI_SORT_PARAM *info); -int _thr_write_keys(MI_SORT_PARAM *sort_param); int test_if_almost_full(MI_INFO *info); int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename); void mi_disable_non_unique_index(MI_INFO *info, ha_rows rows); |