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=f803b107ddf4876f325bda7fb36708ec0967c1e2;hb=81c4000ed74c7fa88924dcc1046ff60843713521;hp=64198fc5af4a09d0a56e6ce0806d7216d739ac1b;hpb=c8845f2e67c636fbfb597a4562847cc80c4e5f28;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 64198fc..f803b10 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,8 @@ use base qw/ DBIx::Class::Schema::Loader::DBI::MSSQL /; use mro 'c3'; -use Carp::Clan qw/^DBIx::Class/; -use namespace::clean; -our $VERSION = '0.07009'; +our $VERSION = '0.07014'; =head1 NAME @@ -23,8 +21,21 @@ Proxy for L when using L. See L for usage information. +=cut + +sub _table_comment { + local $^W = 0; # invalid object warnings + shift->next::method(@_); +} + +sub _column_comment { + local $^W = 0; # invalid object warnings + shift->next::method(@_); +} + =head1 SEE ALSO +L, L, L, L, L