1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-03 05:41:09 +03:00

Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b26711

into  mysql.com:/home/bar/mysql-work/mysql-5.1.b26711
This commit is contained in:
bar@bar.myoffice.izhnet.ru
2007-06-07 13:43:20 +05:00
6 changed files with 89 additions and 13 deletions

View File

@@ -192,3 +192,16 @@ drop table t1;
select hex(convert(_big5 0xC84041 using ucs2));
hex(convert(_big5 0xC84041 using ucs2))
003F0041
End of 4.1 tests
create table t1 (a blob);
insert into t1 values (0xEE00);
delete from t1;
select hex(load_file('test/t1.txt'));
hex(load_file('test/t1.txt'))
5CEE5C300A
load data infile 't1.txt' into table t1;
select hex(a) from t1;
hex(a)
EE00
drop table t1;
End of 5.0 tests