diff options
author | monty@donna.mysql.fi <> | 2001-03-09 03:38:18 +0200 |
---|---|---|
committer | monty@donna.mysql.fi <> | 2001-03-09 03:38:18 +0200 |
commit | 267c8760cb33208e2c1d772340c2aaf234806c45 (patch) | |
tree | 816c1657d4d15fbff641ddc882052d6536790ed5 /sql/sql_delete.cc | |
parent | 210440590455a100833c66b7d943756bddd3333e (diff) | |
download | mariadb-git-267c8760cb33208e2c1d772340c2aaf234806c45.tar.gz |
Fixed wrong option in mysql_install_db
Added delayed_user for delayed_threads
Don't use record cache when doing deletes
Diffstat (limited to 'sql/sql_delete.cc')
-rw-r--r-- | sql/sql_delete.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_delete.cc b/sql/sql_delete.cc index e1196341bef..fc150b08a69 100644 --- a/sql/sql_delete.cc +++ b/sql/sql_delete.cc @@ -192,7 +192,7 @@ int mysql_delete(THD *thd,TABLE_LIST *table_list,COND *conds,ha_rows limit, (void) table->file->extra(HA_EXTRA_NO_READCHECK); if (options & OPTION_QUICK) (void) table->file->extra(HA_EXTRA_QUICK); - init_read_record(&info,thd,table,select,1,1); + init_read_record(&info,thd,table,select,0,1); ulong deleted=0L; thd->proc_info="updating"; while (!(error=info.read_record(&info)) && !thd->killed) |