diff options
author | unknown <monty@hundin.mysql.fi> | 2001-12-06 01:05:30 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-12-06 01:05:30 +0200 |
commit | ff8c7348648b2a2e1ce14d8332c065a38a43ca0c (patch) | |
tree | b6eaff9c9c574324b7a2aae18f5de2e52f89576c /mysql-test/t | |
parent | 84788e278f97ccabe0cfe6d5b6cfcdbe1fe86c59 (diff) | |
download | mariadb-git-ff8c7348648b2a2e1ce14d8332c065a38a43ca0c.tar.gz |
Update of query cache code
Docs/manual.texi:
Added information about RESET
sql/mysql_priv.h:
Fixed wrong type
sql/sql_base.cc:
Removed wrong info in DBUG output
sql/sql_class.cc:
cleanup
sql/sql_parse.cc:
Fixed wrong type
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/flush.test | 9 | ||||
-rw-r--r-- | mysql-test/t/query_cache-master.opt | 1 | ||||
-rw-r--r-- | mysql-test/t/query_cache.test | 26 |
3 files changed, 36 insertions, 0 deletions
diff --git a/mysql-test/t/flush.test b/mysql-test/t/flush.test index fe219471041..6a09b903873 100644 --- a/mysql-test/t/flush.test +++ b/mysql-test/t/flush.test @@ -66,3 +66,12 @@ connection con2; insert into t1 values (345); select * from t1; drop table t1; + +# +# Test that QUERY CACHE commands doesn't core dump. +# (Normally we don't have a cache active at this point) +# + +flush query cache; +reset query cache; +show status like "Qcache_queries_in_cache"; diff --git a/mysql-test/t/query_cache-master.opt b/mysql-test/t/query_cache-master.opt new file mode 100644 index 00000000000..7ff962c2216 --- /dev/null +++ b/mysql-test/t/query_cache-master.opt @@ -0,0 +1 @@ +--set-variable=query_cache_size=2M diff --git a/mysql-test/t/query_cache.test b/mysql-test/t/query_cache.test new file mode 100644 index 00000000000..3d1aa70d8b2 --- /dev/null +++ b/mysql-test/t/query_cache.test @@ -0,0 +1,26 @@ +# +# Tests with query cache +# + +# Reset query cache variables. + +reset query cache; +flush status; +drop table if exists t1; +create table t1 (a int not null); +insert into t1 values (1),(2),(3); +select * from t1; +select * from t1; +select sql_no_cache * from t1; +select length(now()) from t1; + +# Only check the variables that are independent of the machine and startup +# options + +show status like "Qcache_queries_in_cache"; +show status like "Qcache_inserts"; +show status like "Qcache_hits"; + +drop table t1; + +show status like "Qcache_queries_in_cache"; |