diff options
author | unknown <bar@mysql.com> | 2005-09-07 16:32:15 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-09-07 16:32:15 +0500 |
commit | e8ba23fd0d1ca9b5f3a1366419f8351280b473bc (patch) | |
tree | 86be62125024f36215a902740ff80b67209bce8c /mysql-test/r/func_like.result | |
parent | d9732be25a2baaa8820f44598dec15e23bddc3cf (diff) | |
parent | 4fdf0ce3803f42d20681ed332888b16042b33f8f (diff) | |
download | mariadb-git-e8ba23fd0d1ca9b5f3a1366419f8351280b473bc.tar.gz |
Merge mysql.com:/usr/home/bar/mysql-4.1.b12611
into mysql.com:/usr/home/bar/mysql-5.0
mysql-test/r/ctype_utf8.result:
Auto merged
mysql-test/r/func_like.result:
Auto merged
mysql-test/t/ctype_utf8.test:
Auto merged
sql/item_cmpfunc.cc:
Auto merged
sql/item_cmpfunc.h:
Auto merged
Diffstat (limited to 'mysql-test/r/func_like.result')
-rw-r--r-- | mysql-test/r/func_like.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/func_like.result b/mysql-test/r/func_like.result index ac8e5eda8e8..7e6fedb9403 100644 --- a/mysql-test/r/func_like.result +++ b/mysql-test/r/func_like.result @@ -158,3 +158,10 @@ DROP TABLE t1; select _cp866'aaaaaaaaa' like _cp866'%aaaa%' collate cp866_bin; _cp866'aaaaaaaaa' like _cp866'%aaaa%' collate cp866_bin 1 +set names koi8r; +select 'andre%' like 'andreÊ%' escape 'Ê'; +'andre%' like 'andreÊ%' escape 'Ê' +1 +select _cp1251'andre%' like convert('andreÊ%' using cp1251) escape 'Ê'; +_cp1251'andre%' like convert('andreÊ%' using cp1251) escape 'Ê' +1 |