diff --git a/mozilla/webtools/bugzilla/Bugzilla/Search.pm b/mozilla/webtools/bugzilla/Bugzilla/Search.pm index 73774e82bf7..cf42e073fb0 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Search.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Search.pm @@ -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) . ")";