From 3088b1d2724d7959ea87e84cab98963e2d2c3e72 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 31 Aug 2012 12:31:04 +0200 Subject: Bug 655477: Bugzilla now requires Perl 5.10.1 r=mkanat a=LpSolit --- Bugzilla/DB.pm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Bugzilla/DB.pm') diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 89a0140d7..7d289aaa1 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -1246,11 +1246,9 @@ sub db_new { ShowErrorStatement => 1, HandleError => \&_handle_error, 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?) + # See https://rt.perl.org/rt3/Public/Bug/Display.html?id=30933 + # for the reason to use NAME instead of NAME_lc (bug 253696). + FetchHashKeyName => 'NAME', }; if ($override_attrs) { -- cgit v1.2.3-24-g4f1b