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:
@ -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;
|
||||
|
Reference in New Issue
Block a user