X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcount%2Fprefetch.t;h=f3818c14ee7876d5f8a77d87c851ca683ca0a8fb;hb=336feb8ef85d16d22ae0b131b0c7a85abc9e9435;hp=7bc4708e8e92472c3ad92d87289bdd4435299edd;hpb=4b1b5ea39ae8cc110441ce3dc6b386cba349aff2;p=dbsrgits%2FDBIx-Class.git diff --git a/t/count/prefetch.t b/t/count/prefetch.t index 7bc4708..f3818c1 100644 --- a/t/count/prefetch.t +++ b/t/count/prefetch.t @@ -31,7 +31,7 @@ my $schema = DBICTest->init_schema(); JOIN artist artist ON artist.artistid = cds.artist WHERE tracks.position = ? OR tracks.position = ? GROUP BY cds.cdid - ) count_subq + ) cds )', [ map { [ 'tracks.position' => $_ ] } (1, 2) ], ); @@ -63,7 +63,7 @@ my $schema = DBICTest->init_schema(); WHERE ( genre.name = ? ) GROUP BY genre.genreid ) - count_subq + genre )', [ [ 'genre.name' => 'emo' ] ], );