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 /BUILD/compile-pentium | |
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 'BUILD/compile-pentium')
-rwxr-xr-x | BUILD/compile-pentium | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/BUILD/compile-pentium b/BUILD/compile-pentium index 4ece8b1f321..aa013c85d30 100755 --- a/BUILD/compile-pentium +++ b/BUILD/compile-pentium @@ -7,11 +7,6 @@ extra_flags="$pentium_cflags $fast_cflags" extra_configs="$pentium_configs" strip=yes -# Use the optimized version if it exists -if test -d /usr/local/BerkeleyDB-opt/ -then - extra_configs="$extra_configs --with-berkeley-db=/usr/local/BerkeleyDB-opt/" -fi -extra_configs="$extra_configs --with-innobase" +extra_configs="$extra_configs --with-berkeley-db --with-innobase" . "$path/FINISH.sh" |