summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-04-20 08:44:03 +0200
committermkanat%kerio.com <>2005-04-20 08:44:03 +0200
commit993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5 (patch)
treeb05db095d5f2997818dab6db84b32d80890876ba /Bugzilla/DB.pm
parent57394ff026769d28ef6b5d077cb4655adf032936 (diff)
downloadbugzilla-993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5.tar.gz
bugzilla-993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5.tar.xz
Bug 284599: Use of REGEXP search is not consistent wrt case sensitivity
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
Diffstat (limited to 'Bugzilla/DB.pm')
-rw-r--r--Bugzilla/DB.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index 7e45e56e4..f1747b39d 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -1199,7 +1199,8 @@ formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>.
=item C<sql_regexp>
Description: Outputs SQL regular expression operator for POSIX regex
- searches in format suitable for a given database.
+ searches (case insensitive) in format suitable for a given
+ database.
Abstract method, should be overriden by database specific code.
Params: none
Returns: formatted SQL for regular expression search (e.g. REGEXP)
@@ -1208,7 +1209,8 @@ formatted SQL command have prefix C<sql_>. All other methods have prefix C<bz_>.
=item C<sql_not_regexp>
Description: Outputs SQL regular expression operator for negative POSIX
- regex searches in format suitable for a given database.
+ regex searches (case insensitive) in format suitable for a given
+ database.
Abstract method, should be overriden by database specific code.
Params: none
Returns: formatted SQL for negative regular expression search