summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-12-06 19:12:15 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2012-12-06 19:12:15 +0100
commit3966e91e3d5b82148718b37719d887dbe1687f23 (patch)
tree75c0b9813f758ef69c7b6b121c6eb294d293c851 /Bugzilla/DB
parent8ad3ac7ab58239f5c3654626c1721b7d029842da (diff)
downloadbugzilla-3966e91e3d5b82148718b37719d887dbe1687f23.tar.gz
bugzilla-3966e91e3d5b82148718b37719d887dbe1687f23.tar.xz
Fix regression due to bug 787668: The Bugzilla::DB::Oracle::st package requires -norequire to load DBI::st
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Oracle.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm
index aaf289b41..a4276ab7a 100644
--- a/Bugzilla/DB/Oracle.pm
+++ b/Bugzilla/DB/Oracle.pm
@@ -720,7 +720,7 @@ package Bugzilla::DB::Oracle::st;
use 5.10.1;
use strict;
-use parent qw(DBI::st);
+use parent -norequire, qw(DBI::st);
sub fetchrow_arrayref {
my $self = shift;