diff options
author | unknown <ram@gw.mysql.r18.ru> | 2004-01-08 12:24:36 +0400 |
---|---|---|
committer | unknown <ram@gw.mysql.r18.ru> | 2004-01-08 12:24:36 +0400 |
commit | 3ceb912a5c0c2751c4f15ebad7c26c7be27366d5 (patch) | |
tree | a9c902383bee8048336b59899ba298130a221bcc /mysql-test/r/func_like.result | |
parent | a62e02c387df971b340654f4fb9e4a05f094e5ec (diff) | |
download | mariadb-git-3ceb912a5c0c2751c4f15ebad7c26c7be27366d5.tar.gz |
An improvement of the fix for the bug #2231: string column,
INDEX+LIKE, don't take the ESCAPE character. (ver. 2)
Diffstat (limited to 'mysql-test/r/func_like.result')
-rw-r--r-- | mysql-test/r/func_like.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/func_like.result b/mysql-test/r/func_like.result index 0f94348a5f8..b196b50f53b 100644 --- a/mysql-test/r/func_like.result +++ b/mysql-test/r/func_like.result @@ -42,4 +42,7 @@ insert into t1 values ('a'), ('a\\b'); select * from t1 where a like 'a\\%' escape '#'; a a\b +select * from t1 where a like 'a\\%' escape '#' and a like 'a\\\\b'; +a +a\b drop table t1; |