diff options
author | unknown <igor@rurik.mysql.com> | 2003-07-16 12:30:49 -0700 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2003-07-16 12:30:49 -0700 |
commit | 176d336404e1a29ff1b61ffb690d2132187e4d88 (patch) | |
tree | db50cb809580ea76d7a68cbf9041c881a935ace7 /include/myisam.h | |
parent | 1e7dafba7cd481d8519f0bc666071fa9da0d6449 (diff) | |
download | mariadb-git-176d336404e1a29ff1b61ffb690d2132187e4d88.tar.gz |
mi_keycache.c:
new file
Many files:
Added CACHE INDEX command
sql/ha_myisam.cc:
Added CACHE INDEX command
sql/handler.cc:
Added CACHE INDEX command
sql/sql_lex.cc:
Added CACHE INDEX command
sql/sql_parse.cc:
Added CACHE INDEX command
sql/sql_table.cc:
Added CACHE INDEX command
sql/ha_myisam.h:
Added CACHE INDEX command
sql/handler.h:
Added CACHE INDEX command
sql/mysql_priv.h:
Added CACHE INDEX command
sql/sql_lex.h:
Added CACHE INDEX command
sql/sql_yacc.yy:
Added CACHE INDEX command
Diffstat (limited to 'include/myisam.h')
-rw-r--r-- | include/myisam.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/myisam.h b/include/myisam.h index e85d3057672..11a59263b07 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -410,6 +410,8 @@ my_bool mi_test_if_sort_rep(MI_INFO *info, ha_rows rows, ulonglong key_map, int mi_init_bulk_insert(MI_INFO *info, ulong cache_size, ha_rows rows); void mi_flush_bulk_insert(MI_INFO *info, uint inx); void mi_end_bulk_insert(MI_INFO *info); +int mi_assign_to_keycache(MI_INFO *info, ulonglong key_map, + char *keycache_name); int mi_preload(MI_INFO *info, ulonglong key_map, my_bool ignore_leaves); #ifdef __cplusplus |