summaryrefslogtreecommitdiff
path: root/mysql-test/t/query_cache.test
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2003-03-28 16:18:26 +0200
committerbell@sanja.is.com.ua <>2003-03-28 16:18:26 +0200
commite4bc744d9b4bab219d3d4a6b145bb6c4de0d673d (patch)
tree154b4f435ee5a24961c99b4c331bea1c0ca759b3 /mysql-test/t/query_cache.test
parentb2f27a155c5eb1ebf8a74aae5d602ef2308890ac (diff)
parentdf7c02d8d0864318a0a842049a60056c7c5e0c08 (diff)
downloadmariadb-git-e4bc744d9b4bab219d3d4a6b145bb6c4de0d673d.tar.gz
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-qcvar-4.1
Diffstat (limited to 'mysql-test/t/query_cache.test')
-rw-r--r--mysql-test/t/query_cache.test14
1 files changed, 13 insertions, 1 deletions
diff --git a/mysql-test/t/query_cache.test b/mysql-test/t/query_cache.test
index f6e32a99523..56eda7fa104 100644
--- a/mysql-test/t/query_cache.test
+++ b/mysql-test/t/query_cache.test
@@ -435,4 +435,16 @@ select * from t1;
show status like "Qcache_queries_in_cache";
load data infile '../../std_data/words.dat' into table t1;
show status like "Qcache_queries_in_cache";
-drop table t1; \ No newline at end of file
+drop table t1;
+
+#
+# INTO OUTFILE/DUMPFILE test
+#
+
+create table t1 (a int);
+insert into t1 values (1),(2),(3);
+show status like "Qcache_queries_in_cache";
+select * from t1 into outfile "query_caceh.out.file";
+select * from t1 limit 1 into dumpfile "query_cache.dump.file";
+show status like "Qcache_queries_in_cache";
+drop table t1;