release 0.07025 0.07025
Rafael Kitover [Fri, 8 Jun 2012 23:15:14 +0000 (19:15 -0400)]
32 files changed:
Changes
lib/DBIx/Class/Schema/Loader.pm
lib/DBIx/Class/Schema/Loader/Base.pm
lib/DBIx/Class/Schema/Loader/DBI.pm
lib/DBIx/Class/Schema/Loader/DBI/ADO.pm
lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm
lib/DBIx/Class/Schema/Loader/DBI/ADO/Microsoft_SQL_Server.pm
lib/DBIx/Class/Schema/Loader/DBI/Component/QuotedDefault.pm
lib/DBIx/Class/Schema/Loader/DBI/DB2.pm
lib/DBIx/Class/Schema/Loader/DBI/Firebird.pm
lib/DBIx/Class/Schema/Loader/DBI/Informix.pm
lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm
lib/DBIx/Class/Schema/Loader/DBI/MSSQL.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/ACCESS.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/Firebird.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/Microsoft_SQL_Server.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/SQL_Anywhere.pm
lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm
lib/DBIx/Class/Schema/Loader/DBI/Pg.pm
lib/DBIx/Class/Schema/Loader/DBI/SQLAnywhere.pm
lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm
lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm
lib/DBIx/Class/Schema/Loader/DBI/Sybase/Common.pm
lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm
lib/DBIx/Class/Schema/Loader/DBI/Writing.pm
lib/DBIx/Class/Schema/Loader/DBI/mysql.pm
lib/DBIx/Class/Schema/Loader/RelBuilder.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_040.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_05.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_06.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_07.pm

diff --git a/Changes b/Changes
index d7bae34..a38feeb 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Perl extension DBIx::Class::Schema::Loader
 
+0.07025  2012-06-08 22:48:05
         - support SQL Server 2000 again (broken in 0.07011)
+        - some slight optimization for SQL Server driver
 
 0.07024  2012-05-08 15:35:16
         - work around broken keyseq in DBD::Pg foreign_key_info (RT#77062)
index b7e343f..3ffcaf3 100644 (file)
@@ -16,7 +16,7 @@ use namespace::clean;
 # Always remember to do all digits for the version even if they're 0
 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
 # brain damage and presumably various other packaging systems too
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 __PACKAGE__->mk_group_accessors('inherited', qw/
                                 _loader_args
index 9c5af7a..77b7031 100644 (file)
@@ -29,7 +29,7 @@ use List::MoreUtils qw/all any firstidx uniq/;
 use File::Temp 'tempfile';
 use namespace::clean;
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 __PACKAGE__->mk_group_ro_accessors('simple', qw/
                                 schema
index 455bb65..b75e491 100644 (file)
@@ -10,7 +10,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use namespace::clean;
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 __PACKAGE__->mk_group_accessors('simple', qw/
     _disable_pk_detection
index 569cd14..46c677e 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::DBI';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 7e81b3b..a3a6a46 100644 (file)
@@ -10,7 +10,7 @@ use mro 'c3';
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index d943aa8..a5add72 100644 (file)
@@ -8,7 +8,7 @@ use base qw/
 /;
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index b368210..25937e1 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::DBI';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 7d989bc..9903b77 100644 (file)
@@ -13,7 +13,7 @@ use namespace::clean;
 
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index a3c87f4..2f04817 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base qw/DBIx::Class::Schema::Loader::DBI::InterBase/;
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index c0f2798..d44c205 100644 (file)
@@ -10,7 +10,7 @@ use Try::Tiny;
 use namespace::clean;
 use DBIx::Class::Schema::Loader::Table::Informix ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 664a255..3fa25f7 100644 (file)
@@ -9,7 +9,7 @@ use List::Util 'first';
 use namespace::clean;
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 sub _supports_db_schema { 0 }
 
index 0ab2bc7..0b451ab 100644 (file)
@@ -10,7 +10,7 @@ use namespace::clean;
 
 use DBIx::Class::Schema::Loader::Table::Sybase ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 63f43ce..494e141 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::DBI';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index cb8b587..8800f5c 100644 (file)
@@ -8,7 +8,7 @@ use Try::Tiny;
 use namespace::clean;
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 __PACKAGE__->mk_group_accessors('simple', qw/
     __ado_connection
index 4b302fb..1f41183 100644 (file)
@@ -8,7 +8,7 @@ use base qw/
 /;
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index d41d040..c5eb043 100644 (file)
@@ -8,7 +8,7 @@ use base qw/
 /;
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 05bab8c..84570e9 100644 (file)
@@ -8,7 +8,7 @@ use base qw/
 /;
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index ed43b82..4318ad3 100644 (file)
@@ -7,7 +7,7 @@ use mro 'c3';
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 6aafc8c..9952425 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 9fe3857..3bd701c 100644 (file)
@@ -8,7 +8,7 @@ use List::MoreUtils 'any';
 use namespace::clean;
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 8f8cf27..d15d965 100644 (file)
@@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
 use mro 'c3';
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index ed719a7..0e988a3 100644 (file)
@@ -9,7 +9,7 @@ use namespace::clean;
 
 use DBIx::Class::Schema::Loader::Table::Sybase ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index d492e02..a862974 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::DBI';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 5d7030d..0c96b4b 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::DBI::MSSQL';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index 44ebdca..d67e6d5 100644 (file)
@@ -1,7 +1,7 @@
 package DBIx::Class::Schema::Loader::DBI::Writing;
 use strict;
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 # Empty. POD only.
 
index 7ab0596..1fa1a63 100644 (file)
@@ -12,7 +12,7 @@ use Scalar::Util 'blessed';
 use namespace::clean;
 use DBIx::Class::Schema::Loader::Table ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 =head1 NAME
 
index b46029e..629970e 100644 (file)
@@ -18,7 +18,7 @@ use String::ToIdentifier::EN::Unicode ();
 use Class::Unload ();
 use Class::Inspector ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 # Glossary:
 #
index dc72cd8..80da472 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_05';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 sub _relnames_and_method {
     my ( $self, $local_moniker, $rel, $cond, $uniqs, $counters ) = @_;
index 70c892d..58d4a91 100644 (file)
@@ -8,7 +8,7 @@ use DBIx::Class::Schema::Loader::Utils 'array_eq';
 use namespace::clean;
 use Lingua::EN::Inflect::Number ();
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 sub _to_PL {
     my ($self, $name) = @_;
index f213529..be68006 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_07';
 use mro 'c3';
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 sub _normalize_name {
     my ($self, $name) = @_;
index 5153224..a1d80a6 100644 (file)
@@ -17,7 +17,7 @@ L<DBIx::Class::Schema::Loader::RelBuilder>.
 
 =cut
 
-our $VERSION = '0.07024';
+our $VERSION = '0.07025';
 
 sub _strip_id_postfix {
     my ($self, $name) = @_;