diff options
author | unknown <bell@sanja.is.com.ua> | 2002-09-19 10:36:19 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-09-19 10:36:19 +0300 |
commit | face384d6912e46f438f291de249ad344e3a950b (patch) | |
tree | 823169d867628a7dd6c4c1867fb1cabe1d179509 /sql/sql_cache.h | |
parent | 26aad00a340a71f9ea687701f3db53f474ea8035 (diff) | |
download | mariadb-git-face384d6912e46f438f291de249ad344e3a950b.tar.gz |
new function for innodb
windows case insensitive tables name work around
sql/sql_cache.h:
new function for innodb
sql/sql_class.cc:
new query cache invalidation function support
sql/sql_class.h:
new query cache invalidation function support
Diffstat (limited to 'sql/sql_cache.h')
-rw-r--r-- | sql/sql_cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sql_cache.h b/sql/sql_cache.h index 3088331f19a..52d2e8998a7 100644 --- a/sql/sql_cache.h +++ b/sql/sql_cache.h @@ -361,6 +361,8 @@ protected: my_bool using_transactions); void invalidate(CHANGED_TABLE_LIST *tables_used); void invalidate(THD* thd, TABLE *table, my_bool using_transactions); + void invalidate(THD *thd, const char *key, uint32 key_length, + my_bool using_transactions); /* Remove all queries that uses any of the tables in following database */ void invalidate(char *db); |