]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
add prepare_cached to the list of delegated methods.
authorDylan William Hardison <dylan@hardison.net>
Mon, 15 Jul 2019 01:12:18 +0000 (21:12 -0400)
committerDylan William Hardison <dylan@hardison.net>
Mon, 15 Jul 2019 01:52:23 +0000 (21:52 -0400)
This was added in bug 340160

Bugzilla/DB.pm

index e3bbff618723cf444503931fe56f065ab1b00502..092f870ca4909fce730b807d5d825f65651efa1e 100644 (file)
@@ -37,9 +37,10 @@ has [qw(dsn user pass attrs)] => (is => 'ro', required => 1,);
 # time we need a DBI handle to ensure the connection is alive.
 {
   my @DBI_METHODS = qw(
-    begin_work column_info commit disconnect do errstr get_info last_insert_id ping prepare
-    primary_key quote_identifier rollback selectall_arrayref selectall_hashref
-    selectcol_arrayref selectrow_array selectrow_arrayref selectrow_hashref table_info
+    begin_work column_info commit disconnect do errstr get_info last_insert_id
+    ping prepare prepare_cached primary_key quote_identifier rollback
+    selectall_arrayref selectall_hashref selectcol_arrayref selectrow_array
+    selectrow_arrayref selectrow_hashref table_info
   );
   my $stash = Package::Stash->new(__PACKAGE__);