summaryrefslogtreecommitdiff
path: root/mysql-test/t/outfile.test
diff options
context:
space:
mode:
authorSinisa@sinisa.nasamreza.org <>2002-12-28 21:34:17 +0200
committerSinisa@sinisa.nasamreza.org <>2002-12-28 21:34:17 +0200
commit1e2bec80097d6e2b9ebb0b69d7f7b68a0448fece (patch)
tree5297180578ae74db613ac34609d154992d7192eb /mysql-test/t/outfile.test
parent5a44f2bc26b4dbb22e1c1f9a6e20dba8563814fc (diff)
downloadmariadb-git-1e2bec80097d6e2b9ebb0b69d7f7b68a0448fece.tar.gz
aliases with multi-table updates / deletes
fix for a bug with derived tables and query cache ix for a charset bug in timestamp
Diffstat (limited to 'mysql-test/t/outfile.test')
-rw-r--r--mysql-test/t/outfile.test5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/outfile.test b/mysql-test/t/outfile.test
index c126d221bd2..3d524cb35a2 100644
--- a/mysql-test/t/outfile.test
+++ b/mysql-test/t/outfile.test
@@ -21,3 +21,8 @@
#select * into dumpfile "/tmp/select-test.99" from t1;
#select load_file("/tmp/select-test.not-exist");
#drop table t1;
+#drop table if exists t;
+#CREATE TABLE t ( t timestamp NOT NULL, c char(200) character set latin1 NOT NULL default '', KEY t (t)) TYPE=MyISAM;
+#INSERT INTO t VALUES ('2002-12-20 12:01:20','');
+#select * from t into outfile "fdg";
+#drop table if exists t;