Bug 225075: Fix exact case search so it only selects bugs with matching case strings.

r=bbaetz, a=justdave
This commit is contained in:
bugreport%peshkin.net 2004-01-21 14:01:08 +00:00
Родитель a108b43b2f
Коммит a12eaf447f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -674,7 +674,7 @@ sub init {
$term = "$ff != $q";
},
",casesubstring" => sub {
$term = "INSTR($ff, $q)";
$term = "INSTR(CAST($ff AS BINARY), CAST($q AS BINARY))";
},
",substring" => sub {
$term = "INSTR(LOWER($ff), " . lc($q) . ")";