diff options
author | unknown <monty@hundin.mysql.fi> | 2002-01-05 22:51:42 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-01-05 22:51:42 +0200 |
commit | 027388d8141110f26eb40c0425fb1caa11bc033f (patch) | |
tree | aee8644482b4b6ee28e2b60a28829fa32f99a2b0 /sql/sql_cache.h | |
parent | 6a1ddf99ce1a9029fea68e85a1c686188e679718 (diff) | |
download | mariadb-git-027388d8141110f26eb40c0425fb1caa11bc033f.tar.gz |
Fix for FLUSH QUERY CACHE
Fix for new bug in CREATE TABLE when sorting keys.
Docs/manual.texi:
Added FOUND_ROWS() section.
include/my_base.h:
Spatial index
include/myisam.h:
Spatial index
include/mysql_com.h:
Spatial index
myisam/ft_dump.c:
Remove warnings.
mysys/hash.c:
Fix for SUNPRO_C (Sun's Fortre compiler)
sql/sql_cache.cc:
Fix for FLUSH QUERY CACHE.
sql/sql_cache.h:
Fix for FLUSH QUERY CACHE.
sql/sql_table.cc:
Fix for new bug when sorting keys.
Diffstat (limited to 'sql/sql_cache.h')
-rw-r--r-- | sql/sql_cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/sql_cache.h b/sql/sql_cache.h index 4c1a5950546..23789d9f723 100644 --- a/sql/sql_cache.h +++ b/sql/sql_cache.h @@ -394,6 +394,9 @@ protected: my_bool check_integrity(bool not_locked); my_bool in_list(Query_cache_block * root, Query_cache_block * point, const char *name); + my_bool in_table_list(Query_cache_block_table * root, + Query_cache_block_table * point, + const char *name); my_bool in_blocks(Query_cache_block * point); }; |