1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

An improvement of the fix for the bug #2231: string column,

INDEX+LIKE, don't take the ESCAPE character. (ver. 2)
This commit is contained in:
unknown
2004-01-08 12:24:36 +04:00
parent 824111e6c4
commit aafca9f08d
3 changed files with 21 additions and 15 deletions

View File

@ -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;