Fix for upcoming (not yet available via DBD::SQLite) libsqlite version
Peter Rabbitson [Tue, 13 Sep 2016 15:15:48 +0000 (17:15 +0200)]
Changes
t/prefetch/grouped.t

diff --git a/Changes b/Changes
index 72d7647..e402e5a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -73,6 +73,8 @@ Revision history for DBIx::Class
           working with copy() in t/icdt/engine_specific/sybase.t (GH#84)
         - Fix t/54taint.t failing on local::lib's with upgraded Carp on 5.8.*
         - Fix invalid variable names in ResultSource::View examples
+        - Fix missing ORDER BY leading to failures of t/prefetch/grouped.t
+          under upcoming libsqlite (RT#117271)
         - Skip tests in a way more intelligent and speedy manner when optional
           dependencies are missing
         - Make the Optional::Dependencies error messages cpanm-friendly
index 4aad6b1..c0d2224 100644 (file)
@@ -101,7 +101,7 @@ my @cdids = sort $cd_rs->get_column ('cdid')->all;
 
   # add an extra track to one of the cds, and then make sure we can get it on top
   # (check if limit works)
-  my $top_cd = $cd_rs->slice (1,1)->next;
+  my $top_cd = $cd_rs->search({}, { order_by => 'cdid' })->slice (1,1)->next;
   $top_cd->create_related ('tracks', {
     title => 'over the top',
   });