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

Optimize LIKE with turbo-boyer-more algoritm

This commit is contained in:
monty@hundin.mysql.fi
2002-05-17 16:45:00 +03:00
parent 0c5c517db6
commit ce1353a454
6 changed files with 321 additions and 6 deletions

View File

@ -15,4 +15,15 @@ test
select * from t1 where a like "te_t";
a
test
select * from t1 where a like "%a%";
a
a
abc
abcd
select * from t1 where a like "%abcd%";
a
abcd
select * from t1 where a like "%abc\d%";
a
abcd
drop table t1;