Commit b4f84b30 authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

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

r=bbaetz, a=justdave
parent 08c4a8aa
...@@ -674,7 +674,7 @@ sub init { ...@@ -674,7 +674,7 @@ sub init {
$term = "$ff != $q"; $term = "$ff != $q";
}, },
",casesubstring" => sub { ",casesubstring" => sub {
$term = "INSTR($ff, $q)"; $term = "INSTR(CAST($ff AS BINARY), CAST($q AS BINARY))";
}, },
",substring" => sub { ",substring" => sub {
$term = "INSTR(LOWER($ff), " . lc($q) . ")"; $term = "INSTR(LOWER($ff), " . lc($q) . ")";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment