From: Peter Rabbitson Date: Tue, 24 Nov 2009 09:39:52 +0000 (+0000) Subject: Changes and prevent a spurious todo-pass X-Git-Tag: v0.08116~127 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=36b5936987ea98eac8a6d6f57fd983d6127957bb;hp=7e684d132efba8dc22113a6f935f1b89d03dbddc Changes and prevent a spurious todo-pass --- diff --git a/Changes b/Changes index f481e6e..08cd863 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,8 @@ Revision history for DBIx::Class - Do not attempt to deploy FK constraints pointing to a View - Refactored Sybase storage driver into a central ::DBI::Sybase dispatcher, and a sybase-specific ::DBI::Sybase::ASE + - Make sure populate() inherits the resultset conditions just + like create() does 0.08114 2009-11-14 17:45:00 (UTC) - Preliminary support for MSSQL via DBD::ADO diff --git a/t/prefetch/via_search_related.t b/t/prefetch/via_search_related.t index f686e15..a9f3f8a 100644 --- a/t/prefetch/via_search_related.t +++ b/t/prefetch/via_search_related.t @@ -57,12 +57,12 @@ lives_ok ( sub { } ); - is($use_prefetch->count, $no_prefetch->count, 'counts with and without prefetch match'); is( scalar ($use_prefetch->all), scalar ($no_prefetch->all), "Amount of returned rows is right" ); + is($use_prefetch->count, $no_prefetch->count, 'counts with and without prefetch match'); }, 'search_related prefetch with condition referencing unqualified column of a joined table works'); }