summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_like.result
diff options
context:
space:
mode:
authorram@gw.mysql.r18.ru <>2004-01-08 12:24:36 +0400
committerram@gw.mysql.r18.ru <>2004-01-08 12:24:36 +0400
commit75df01727697988b52e616c1f82ab9324ae2663d (patch)
treea9c902383bee8048336b59899ba298130a221bcc /mysql-test/r/func_like.result
parente49c7ae45fb5dc301700cf9a890889a24ab91c69 (diff)
downloadmariadb-git-75df01727697988b52e616c1f82ab9324ae2663d.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.result3
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;