diff options
author | jimw@mysql.com <> | 2005-10-21 17:57:51 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-10-21 17:57:51 -0700 |
commit | 2d018862fa87b897bcf0e63edcb67f4d1649521f (patch) | |
tree | cea4796a7b3ab7f6b02ae382afb690e76669aa80 /mysql-test/r/loaddata.result | |
parent | 721873f7cda9587e40a461887a5b6bc6b698f2d8 (diff) | |
parent | dab880274afbae01571257feebb819d94b861c01 (diff) | |
download | mariadb-git-2d018862fa87b897bcf0e63edcb67f4d1649521f.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-11203
into mysql.com:/home/jimw/my/mysql-4.1-clean
Diffstat (limited to 'mysql-test/r/loaddata.result')
-rw-r--r-- | mysql-test/r/loaddata.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/loaddata.result b/mysql-test/r/loaddata.result index 46db14a5871..85de8728bd7 100644 --- a/mysql-test/r/loaddata.result +++ b/mysql-test/r/loaddata.result @@ -76,3 +76,11 @@ select * from t1; id 0 SET @@SQL_MODE=@OLD_SQL_MODE; +create table t1 (a varchar(20), b varchar(20)); +load data infile '../../std_data/loaddata5.dat' into table t1 fields terminated by ',' enclosed by '"' escaped by '"' (a,b); +select * from t1; +a b +field1 field2 +a"b cd"ef +a"b c"d"e +drop table t1; |