diff options
author | igor@rurik.mysql.com <> | 2003-08-02 02:43:18 -0700 |
---|---|---|
committer | igor@rurik.mysql.com <> | 2003-08-02 02:43:18 -0700 |
commit | 9306f55d8e62aca4e00dab3408a8395af85fb947 (patch) | |
tree | add5cbee3049a38799b03ee640b5ae06fbc34ef1 /sql/handler.h | |
parent | f0ca5d545d801a5c1efdda878a5f85079c30f428 (diff) | |
download | mariadb-git-9306f55d8e62aca4e00dab3408a8395af85fb947.tar.gz |
Many files:
Added key cache assignment
mi_locking.c:
Added key cache assignment: correction
my_sys.h:
Added key cache variable structure
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index 1c6e158180e..bbd5873b396 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -387,8 +387,9 @@ int ha_create_table(const char *name, HA_CREATE_INFO *create_info, bool update_create_info); int ha_delete_table(enum db_type db_type, const char *path); void ha_drop_database(char* path); -void ha_key_cache(void); -void ha_resize_key_cache(void); +int ha_key_cache(KEY_CACHE_VAR *key_cache); +int ha_resize_key_cache(KEY_CACHE_VAR *key_cache); +int ha_end_key_cache(KEY_CACHE_VAR *key_cache); int ha_start_stmt(THD *thd); int ha_report_binlog_offset_and_commit(THD *thd, char *log_file_name, my_off_t end_offset); |