diff options
author | unknown <bar@bar.myoffice.izhnet.ru> | 2007-06-15 11:27:10 +0500 |
---|---|---|
committer | unknown <bar@bar.myoffice.izhnet.ru> | 2007-06-15 11:27:10 +0500 |
commit | 1805b34e040e21e2a2ca45bfb96e7f7b1b080287 (patch) | |
tree | c11d05480d07ceb0d7aa53c5a05ed0cb84c54cf9 /mysql-test/t/csv.test | |
parent | f97b8c9978727515acfe6679b387e15fa28d9345 (diff) | |
parent | 39700afdb9d32b6f8db4982e6ab3066db060e9f5 (diff) | |
download | mariadb-git-1805b34e040e21e2a2ca45bfb96e7f7b1b080287.tar.gz |
Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28862
into mysql.com:/home/bar/mysql-work/mysql-5.1.b28862
mysql-test/r/csv.result:
After merge fix
mysql-test/t/csv.test:
After merge fix
storage/csv/ha_tina.cc:
After merge fix
Diffstat (limited to 'mysql-test/t/csv.test')
-rw-r--r-- | mysql-test/t/csv.test | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/t/csv.test b/mysql-test/t/csv.test index 62482d576b2..c7c7f3e13ab 100644 --- a/mysql-test/t/csv.test +++ b/mysql-test/t/csv.test @@ -1596,6 +1596,27 @@ select * from bug15205; drop table bug15205; drop table bug15205_2; + +# +# Bug#28862 "Extended Latin1 characters get lost in CVS engine" +# +set names latin1; +create table t1 ( + c varchar(1), + name varchar(64) +) character set latin1 engine=csv; +insert into t1 values (0xC0,'LATIN CAPITAL LETTER A WITH GRAVE'); +insert into t1 values (0xE0,'LATIN SMALL LETTER A WITH GRAVE'); +insert into t1 values (0xEE,'LATIN SMALL LETTER I WITH CIRCUMFLEX'); +insert into t1 values (0xFE,'LATIN SMALL LETTER THORN'); +insert into t1 values (0xF7,'DIVISION SIGN'); +insert into t1 values (0xFF,'LATIN SMALL LETTER Y WITH DIAERESIS'); +select hex(c), c, name from t1 order by 1; +drop table t1; + +--echo End of 5.0 tests + + # # Bug#22080 "CHECK fails to identify some corruption" # |