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 /sql/ha_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 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index 8486e25556b..f8ffd00a286 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -127,6 +127,7 @@ class ha_myisam: public handler int optimize(THD* thd, HA_CHECK_OPT* check_opt); int restore(THD* thd, HA_CHECK_OPT* check_opt); int backup(THD* thd, HA_CHECK_OPT* check_opt); + int assign_to_keycache(THD* thd, HA_CHECK_OPT* check_opt); int preload_keys(THD* thd, HA_CHECK_OPT* check_opt); #ifdef HAVE_REPLICATION int dump(THD* thd, int fd); |