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/handler.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/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index 25c5d834be9..1c8a83ac9ed 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -71,6 +71,7 @@ #define HA_PRIMARY_KEY_IN_READ_INDEX (HA_NO_WRITE_DELAYED*2) #define HA_DROP_BEFORE_CREATE (HA_PRIMARY_KEY_IN_READ_INDEX*2) #define HA_NOT_READ_AFTER_KEY (HA_DROP_BEFORE_CREATE*2) +#define HA_NOT_DELETE_WITH_CACHE (HA_NOT_READ_AFTER_KEY*2) /* Parameters for open() (in register form->filestat) */ /* HA_GET_INFO does a implicit HA_ABORT_IF_LOCKED */ |