diff options
author | unknown <bell@sanja.is.com.ua> | 2004-03-04 18:32:55 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-03-04 18:32:55 +0200 |
commit | d4f43e511ceb9a9f010f2a504a735699a8872b9b (patch) | |
tree | f122123efc8dd764d21d073a89045021aecd2992 /sql/sql_class.h | |
parent | 53368efea3aee3ef99a82118c130c00d8f84b47c (diff) | |
download | mariadb-git-d4f43e511ceb9a9f010f2a504a735699a8872b9b.tar.gz |
invalidation of locking for write tables (BUG#2693)
fixed linking query_prealloc_size to query cache presence
mysql-test/r/query_cache.result:
test of QC invalidation by LOCK command
mysql-test/t/query_cache.test:
test of QC invalidation by LOCK command
sql/mysqld.cc:
new variable query_cache_wlock_invalidate
fixed query_prealloc_size with QC absence
sql/set_var.cc:
new variable query_cache_wlock_invalidate
sql/sql_cache.cc:
new method for table invalidation
sql/sql_cache.h:
new method for table invalidation
sql/sql_class.h:
new variable query_cache_wlock_invalidate
sql/sql_parse.cc:
layout fixed
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index d96c6bb53cc..85724e7c83f 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -336,6 +336,7 @@ struct system_variables my_bool log_warnings; my_bool low_priority_updates; my_bool new_mode; + my_bool query_cache_wlock_invalidate; CONVERT *convert_set; }; |