From: justdave%bugzilla.org <> Date: Mon, 13 Sep 2004 03:20:42 +0000 (+0000) Subject: Bug 253696: work around NAME_lc bug in ActiveState Perl on Win32 X-Git-Tag: bugzilla-2.19.1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=180adb43d41ccc8862112cc7418226f03f5e2189;p=thirdparty%2Fbugzilla.git Bug 253696: work around NAME_lc bug in ActiveState Perl on Win32 Patch by Byron Jones r=jouni,bbaetz a=justdave --- diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 445e29500d..ca2ee29fa6 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -152,8 +152,12 @@ sub _connect { Password => $db_pass, ShowErrorStatement => 1, HandleError => \&_handle_error, - FetchHashKeyName => 'NAME_lc', TaintIn => 1, + FetchHashKeyName => 'NAME', + # Note: NAME_lc causes crash on ActiveState Perl + # 5.8.4 (see Bug 253696) + # XXX - This will likely cause problems in DB + # back ends that twiddle column case (Oracle?) }); return $dbh;