X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSybase%2FMicrosoft_SQL_Server.pm;h=ab56f7fb97d1081d7494be05f5373c30bd5f852e;hb=04e60ed2698d8c8cf2d817cace84f94827bbbc4f;hp=1dacc85aa4b4ceb9965fc0b86eabe7212434eb5b;hpb=c3fb509f26163ea4760053474e0ebb03f6fc98c4;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm index 1dacc85..ab56f7f 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm @@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::MSSQL'; use Carp::Clan qw/^DBIx::Class/; use Class::C3; -our $VERSION = '0.04999_09'; +our $VERSION = '0.04999_14'; =head1 NAME @@ -30,7 +30,7 @@ sub _tables_list { my $dbh = $self->schema->storage->dbh; my @tables = $dbh->tables(undef, $self->db_schema, $table, $type); - return @tables; + return $self->_filter_tables(@tables); } =head1 SEE ALSO @@ -42,7 +42,12 @@ L, L, =head1 AUTHOR -Rafael Kitover +See L and L. + +=head1 LICENSE + +This library is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. =cut