X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Fgrouped.t;h=190bcb00410f40e4ae16bdf9559e6d7015d7084c;hb=fcb7fcbb6bde5f9a211c62011b3110f07828caec;hp=c8c3e87b24bf67644a95355ebfc9148fc1f3b090;hpb=ee53ca0f8e39882bc30fee5cb6db9e0318d09d59;p=dbsrgits%2FDBIx-Class.git diff --git a/t/prefetch/grouped.t b/t/prefetch/grouped.t index c8c3e87..190bcb0 100644 --- a/t/prefetch/grouped.t +++ b/t/prefetch/grouped.t @@ -7,6 +7,9 @@ use Test::Exception; use lib qw(t/lib); use DBICTest; use DBIC::SqlMakerTest; +use DBIx::Class::SQLMaker::LimitDialects; + +my $ROWS = DBIx::Class::SQLMaker::LimitDialects->__rows_bindtype; my $schema = DBICTest->init_schema(); my $sdebug = $schema->storage->debug; @@ -152,10 +155,10 @@ for ($cd_rs->all) { FROM cd me WHERE ( me.cdid IS NOT NULL ) GROUP BY me.cdid - LIMIT 2 + LIMIT ? ) me )', - [], + [[$ROWS => 2]], 'count() query generated expected SQL', ); @@ -172,14 +175,14 @@ for ($cd_rs->all) { WHERE ( me.cdid IS NOT NULL ) GROUP BY me.cdid ORDER BY track_count DESC, maxtr ASC - LIMIT 2 + LIMIT ? ) me LEFT JOIN track tracks ON tracks.cd = me.cdid LEFT JOIN liner_notes liner_notes ON liner_notes.liner_id = me.cdid WHERE ( me.cdid IS NOT NULL ) ORDER BY track_count DESC, maxtr ASC, tracks.cd )', - [], + [[$ROWS => 2]], 'next() query generated expected SQL', ); @@ -348,12 +351,12 @@ for ($cd_rs->all) { FROM (SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, COUNT( tags.tag ) AS test_count FROM cd me LEFT JOIN tags tags ON tags.cd = me.cdid GROUP BY me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track, tags.tag - ORDER BY tags.tag ASC LIMIT 1) + ORDER BY tags.tag ASC LIMIT ?) me LEFT JOIN tags tags ON tags.cd = me.cdid ORDER BY tags.tag ASC, tags.cd, tags.tag ) - }, []); + }, [[$ROWS => 1]]); } done_testing;