diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-12-31 18:01:53 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-12-31 18:01:53 +0200 |
commit | d78d76f114704668d43db2c023ae60d17603ffc0 (patch) | |
tree | 678179180acded022dc2ff8d0d585930e2194649 /mysql-test/t/outfile.test | |
parent | f32d1148ac26cea47e5a18b5ed71e2f3dfd34127 (diff) | |
download | mariadb-git-d78d76f114704668d43db2c023ae60d17603ffc0.tar.gz |
A fix for a charset bug in the select_export (select into
outfile) class.
Diffstat (limited to 'mysql-test/t/outfile.test')
-rw-r--r-- | mysql-test/t/outfile.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/outfile.test b/mysql-test/t/outfile.test index 3d524cb35a2..a944df01051 100644 --- a/mysql-test/t/outfile.test +++ b/mysql-test/t/outfile.test @@ -22,7 +22,7 @@ #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"; +#CREATE TABLE t ( t timestamp NOT NULL, c char(200) character set latin1 NOT NULL default '', i int(11), v varchar(200), b blob, KEY t (t)) TYPE=MyISAM; +#INSERT INTO t VALUES ('2002-12-20 12:01:20','',1,"aaa","bbb"); +#select * from t into outfile "check"; #drop table if exists t; |