зеркало из https://github.com/mozilla/pjs.git
Bug 225075: Fix exact case search so it only selects bugs with matching case strings.
r=bbaetz, a=justdave
This commit is contained in:
Родитель
a108b43b2f
Коммит
a12eaf447f
|
@ -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) . ")";
|
||||
|
|
Загрузка…
Ссылка в новой задаче