use strict;
use warnings;
-use base qw/DBIx::Class::Storage::DBI/;
+use base qw/DBIx::Class::Storage::DBI::SetConstraintsDeferred/;
use mro 'c3';
-use Scope::Guard ();
-use Scalar::Util 'weaken';
-use Context::Preserve 'preserve_context';
use namespace::clean;
__PACKAGE__->sql_limit_dialect ('SkipFirst');
$self->_dbh->do("ROLLBACK TO SAVEPOINT $name")
}
-sub with_deferred_fk_checks {
- my ($self, $sub) = @_;
-
- my $txn_scope_guard = $self->txn_scope_guard;
-
- $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');
- });
- $sub->()
- } after => sub { $txn_scope_guard->commit };
-}
-
=head2 connect_call_datetime_setup
Used as:
use strict;
use warnings;
-use base qw/DBIx::Class::Storage::DBI/;
+use base qw/DBIx::Class::Storage::DBI::SetConstraintsDeferred/;
use mro 'c3';
use DBIx::Class::Carp;
-use Scope::Guard ();
-use Context::Preserve 'preserve_context';
use Try::Tiny;
use List::Util 'first';
use namespace::clean;
return $self->sql_maker->_shorten_identifier($alias);
}
-=head2 with_deferred_fk_checks
-
-Runs a coderef between:
-
- alter session set constraints = deferred
- ...
- alter session set constraints = immediate
-
-to defer foreign key checks.
-
-Constraints must be declared C<DEFERRABLE> for this to work.
-
-=cut
-
-sub with_deferred_fk_checks {
- my ($self, $sub) = @_;
-
- my $txn_scope_guard = $self->txn_scope_guard;
-
- $self->_do_query('alter session set constraints = deferred');
-
- my $sg = Scope::Guard->new(sub {
- $self->_do_query('alter session set constraints = immediate');
- });
-
- return
- preserve_context { $sub->() } after => sub { $txn_scope_guard->commit };
-}
-
=head1 ATTRIBUTES
Following additional attributes can be used in resultsets.
use strict;
use warnings;
-use base qw/DBIx::Class::Storage::DBI/;
+use base qw/DBIx::Class::Storage::DBI::SetConstraintsDeferred/;
-use Scope::Guard ();
-use Scalar::Util 'weaken';
-use Context::Preserve 'preserve_context';
use DBIx::Class::Carp;
use Try::Tiny;
use namespace::clean;
;
}
-sub with_deferred_fk_checks {
- my ($self, $sub) = @_;
-
- my $txn_scope_guard = $self->txn_scope_guard;
-
- $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');
- });
- $sub->()
- } after => sub { $txn_scope_guard->commit };
-}
-
# only used when INSERT ... RETURNING is disabled
sub last_insert_id {
my ($self,$source,@cols) = @_;
--- /dev/null
+package DBIx::Class::Storage::DBI::SetConstraintsDeferred;
+
+use strict;
+use warnings;
+
+use base 'DBIx::Class::Storage::DBI';
+use mro 'c3';
+
+use Scope::Guard ();
+use Context::Preserve 'preserve_context';
+
+use namespace::clean;
+
+=head1 NAME
+
+DBIx::Class::Storage::DBI::SetConstraintsDeferred - Storage component for deferred constraints via C<SET CONSTRAINTS>
+
+=head1 DESCRIPTION
+
+This component implements L<DBIx::Class::Storage::DBI/with_deferred_fk_checks>
+by wrapping the the coderef in C<SET CONSTRAINTS ALL DEFERRED> and
+C<SET CONSTRAINTS ALL IMMEDIATE>.
+
+=cut
+
+sub with_deferred_fk_checks {
+ my ($self, $sub) = @_;
+
+ my $txn_scope_guard = $self->txn_scope_guard;
+
+ $self->_do_query('SET CONSTRAINTS ALL DEFERRED');
+
+ return preserve_context {
+ my $inner_self = $self; # avoid nested closure leak on 5.8
+ my $sg = Scope::Guard->new(sub {
+ $inner_self->_do_query('SET CONSTRAINTS ALL IMMEDIATE');
+ });
+ $sub->()
+ } after => sub { $txn_scope_guard->commit };
+}
+
+=head1 FURTHER QUESTIONS?
+
+Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
+
+=head1 COPYRIGHT AND LICENSE
+
+This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
+by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
+redistribute it and/or modify it under the same terms as the
+L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
+
+=cut
+
+1;