diff options
author | unknown <monty@donna.mysql.fi> | 2001-03-11 23:09:09 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-03-11 23:09:09 +0200 |
commit | 765c255873bdc2bad425a48aaf257f91da1fb3f3 (patch) | |
tree | f32505d03cc3878a4d4e8a1c03bbdc14aee3012f /sql/ha_isam.h | |
parent | 97acb7b3d17dc60f6b879044aa53b7f422f553c2 (diff) | |
download | mariadb-git-765c255873bdc2bad425a48aaf257f91da1fb3f3.tar.gz |
Optimization of delete with record cache (for MyISAM tables)
Added missing files for innobase to the distribution
BUILD/compile-pentium-debug:
Always compile with BDB tables
BUILD/compile-pentium:
Always compile with BDB tables
configure.in:
Added missing files for innobase to the distribution
innobase/mem/Makefile.am:
Added missing files for innobase to the distribution
innobase/pars/Makefile.am:
Added missing files for innobase to the distribution
sql/ha_isam.h:
Don't use record cache with delete
sql/handler.h:
Optimization of delete with record cache
sql/mysql_priv.h:
Optimization of delete with record cache
sql/records.cc:
Optimization of delete with record cache
sql/sql_delete.cc:
Optimization of delete with record cache
Diffstat (limited to 'sql/ha_isam.h')
-rw-r--r-- | sql/ha_isam.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_isam.h b/sql/ha_isam.h index c8305c655ef..b255e8ba87f 100644 --- a/sql/ha_isam.h +++ b/sql/ha_isam.h @@ -33,7 +33,8 @@ class ha_isam: public handler int_option_flag(HA_READ_NEXT+HA_READ_PREV+HA_READ_RND_SAME+ HA_KEYPOS_TO_RNDPOS+ HA_READ_ORDER+ HA_LASTKEY_ORDER+ HA_HAVE_KEY_READ_ONLY+HA_READ_NOT_EXACT_KEY+ - HA_LONGLONG_KEYS+HA_KEY_READ_WRONG_STR + HA_DUPP_POS) + HA_LONGLONG_KEYS+HA_KEY_READ_WRONG_STR + HA_DUPP_POS + + HA_NOT_DELETE_WITH_CACHE) {} ~ha_isam() {} const char *table_type() const { return "ISAM"; } |