Bug 284599: Use of REGEXP search is not consistent wrt case sensitivity

Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave


git-svn-id: svn://10.0.0.236/trunk@172462 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%kerio.com
2005-04-19 23:44:03 +00:00
parent d1fa0293a2
commit b483941cbf
3 changed files with 9 additions and 7 deletions

View File

@@ -87,11 +87,11 @@ sub bz_last_key {
}
sub sql_regexp {
return "~";
return "~*";
}
sub sql_not_regexp {
return "!~"
return "!~*"
}
sub sql_limit {