summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-08-31 12:31:04 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-08-31 12:31:04 +0200
commit3088b1d2724d7959ea87e84cab98963e2d2c3e72 (patch)
tree1e2d34957160e9375539f8e03a025e984455f7ab /Bugzilla/DB.pm
parentab612efff307c445c25d010ac8a2eaba6fd93228 (diff)
downloadbugzilla-3088b1d2724d7959ea87e84cab98963e2d2c3e72.tar.gz
bugzilla-3088b1d2724d7959ea87e84cab98963e2d2c3e72.tar.xz
Bug 655477: Bugzilla now requires Perl 5.10.1
r=mkanat a=LpSolit
Diffstat (limited to 'Bugzilla/DB.pm')
-rw-r--r--Bugzilla/DB.pm8
1 files changed, 3 insertions, 5 deletions
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) {