summaryrefslogtreecommitdiff
path: root/mysql-test/r/innodb_cache.result
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-12-13 02:31:19 +0200
committermonty@hundin.mysql.fi <>2001-12-13 02:31:19 +0200
commit87fd219d67dc6a0630e882d4be6ced589bd3f0f6 (patch)
tree47a4c1a60e94a3e70ea5564124a296f7cd71605e /mysql-test/r/innodb_cache.result
parent8bef3771f4bf0880e0bbb2f4f526903f8e72082c (diff)
downloadmariadb-git-87fd219d67dc6a0630e882d4be6ced589bd3f0f6.tar.gz
Fixed sleep time in mysql-test-run
Fixed bug in query cache. Cleaned up des_crypt code.
Diffstat (limited to 'mysql-test/r/innodb_cache.result')
-rw-r--r--mysql-test/r/innodb_cache.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/innodb_cache.result b/mysql-test/r/innodb_cache.result
new file mode 100644
index 00000000000..df331addb99
--- /dev/null
+++ b/mysql-test/r/innodb_cache.result
@@ -0,0 +1,15 @@
+drop table if exists t1;
+set autocommit=0;
+create table t1 (a int not null) type=innodb;
+insert into t1 values (1),(2),(3);
+select * from t1;
+a
+1
+2
+3
+show status like "Qcache_queries_in_cache";
+Variable_name Value
+Qcache_queries_in_cache 0
+drop table t1;
+commit;
+set autocommit=1;