Weaken $self to avoid leaks with nested closures on 5.8
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Informix.pm
index 507ee51..b4a2ea8 100644 (file)
@@ -6,6 +6,7 @@ use base qw/DBIx::Class::Storage::DBI/;
 use mro 'c3';
 
 use Scope::Guard ();
+use Scalar::Util 'weaken';
 use Context::Preserve 'preserve_context';
 use namespace::clean;
 
@@ -66,6 +67,7 @@ sub with_deferred_fk_checks {
 
   $self->_do_query('SET CONSTRAINTS ALL DEFERRED');
 
+  weaken($self);
   return preserve_context {
     my $sg = Scope::Guard->new(sub {
       $self->_do_query('SET CONSTRAINTS ALL IMMEDIATE');