diff options
author | monty@mashka.mysql.fi <> | 2002-09-24 17:11:59 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-09-24 17:11:59 +0300 |
commit | efaaf0b4b8190a7288ae686a6108bc809237dc52 (patch) | |
tree | c36011e1dbf0de5f6ea6b6280a6f62bd5975c73e /sql/ha_innodb.cc | |
parent | 108f2ccb4b034f1c5094a891b60d810b648fdc38 (diff) | |
download | mariadb-git-efaaf0b4b8190a7288ae686a6108bc809237dc52.tar.gz |
Updated VC++ project files for 4.0.4
Only write short usage if one starts mysqldump without any options
Added query cache on windows
Added error message if one can't read privilege tables
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r-- | sql/ha_innodb.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index aea895baa63..c9449ff5384 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -571,10 +571,12 @@ innobase_invalidate_query_cache( chars count */ { /* Argument TRUE below means we are using transactions */ +#ifdef HAVE_QUERY_CACHE query_cache.invalidate((THD*)(trx->mysql_thd), (const char*)full_name, (uint32)full_name_len, TRUE); +#endif } } |