From 993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Wed, 20 Apr 2005 06:44:03 +0000 Subject: Bug 284599: Use of REGEXP search is not consistent wrt case sensitivity Patch By Tomas Kopal r=mkanat, a=justdave --- Bugzilla/DB/Pg.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/DB/Pg.pm') diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm index e635096f2..4fe8d2244 100644 --- a/Bugzilla/DB/Pg.pm +++ b/Bugzilla/DB/Pg.pm @@ -87,11 +87,11 @@ sub bz_last_key { } sub sql_regexp { - return "~"; + return "~*"; } sub sql_not_regexp { - return "!~" + return "!~*" } sub sql_limit { -- cgit v1.2.3-24-g4f1b