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

r=bbaetz, a=justdave


git-svn-id: svn://10.0.0.236/trunk@151638 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugreport%peshkin.net
2004-01-21 14:01:08 +00:00
parent 056132a85b
commit 41be22cdae

View File

@@ -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) . ")";