diff options
author | bell@sanja.is.com.ua <> | 2002-03-22 22:55:08 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-03-22 22:55:08 +0200 |
commit | c5d95b5e627a48737c139daadef00c8046645bd7 (patch) | |
tree | a691fc4031ec0bdda379decf4651d4789739c5e8 /sql/sql_delete.cc | |
parent | 144b790fc60f9f31af654741b92820101e7de947 (diff) | |
download | mariadb-git-c5d95b5e627a48737c139daadef00c8046645bd7.tar.gz |
added building without query cache
Diffstat (limited to 'sql/sql_delete.cc')
-rw-r--r-- | sql/sql_delete.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_delete.cc b/sql/sql_delete.cc index a0076c04020..89e30f31fd5 100644 --- a/sql/sql_delete.cc +++ b/sql/sql_delete.cc @@ -182,7 +182,7 @@ cleanup: thd->lock=0; } if (deleted) - query_cache.invalidate(thd, table_list, 1); + query_cache_invalidate3(thd, table_list, 1); delete select; if (error >= 0) // Fatal error send_error(&thd->net,thd->killed ? ER_SERVER_SHUTDOWN: 0); @@ -470,7 +470,7 @@ bool multi_delete::send_eof() VOID(ha_autocommit_or_rollback(thd,error > 0)); } if (deleted) - query_cache.invalidate(thd, delete_tables, 1); + query_cache_invalidate3(thd, delete_tables, 1); ::send_ok(&thd->net,deleted); return 0; } @@ -548,7 +548,7 @@ int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok) bzero((char*) &create_info,sizeof(create_info)); *fn_ext(path)=0; // Remove the .frm extension error= ha_create_table(path,&create_info,1) ? -1 : 0; - query_cache.invalidate(thd, table_list, 0); + query_cache_invalidate3(thd, table_list, 0); if (!dont_send_ok) { |