X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FADO%2FMicrosoft_SQL_Server.pm;h=60931f116deec13950c8bb93974efd5974ef8ba9;hb=53c4835c7c3e764f0881b196fb29f348916e8411;hp=5a87a6948be88ef7b161265ecd5e520e8c700cc8;hpb=3bdcf490c99abda52aea5346fddb6f9f6c43bb2c;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/ADO/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Schema/Loader/DBI/ADO/Microsoft_SQL_Server.pm index 5a87a69..60931f1 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/ADO/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/ADO/Microsoft_SQL_Server.pm @@ -7,10 +7,11 @@ use base qw/ DBIx::Class::Schema::Loader::DBI::MSSQL /; use mro 'c3'; -use Carp::Clan qw/^DBIx::Class/; +use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/; + use namespace::clean; -our $VERSION = '0.07008'; +our $VERSION = '0.07040'; =head1 NAME @@ -23,8 +24,18 @@ Proxy for L when using L. See L for usage information. +=cut + +# Silence ADO "Changed database context" warnings +sub _switch_db { + my $self = shift; + local $SIG{__WARN__} = sigwarn_silencer(qr/Changed database context/); + return $self->next::method(@_); +} + =head1 SEE ALSO +L, L, L, L, L