X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F16joins.tl;h=49ecbcfe6f7373f71b986fea898214456e79af72;hb=9b465d002d544e25ae5756304c4ea59577aca363;hp=8c8378b194a14428e1c519ad7a9267c615ba5d32;hpb=ebaefbc2d27ee15e14f8d509346658376925f152;p=dbsrgits%2FDBIx-Class.git diff --git a/t/run/16joins.tl b/t/run/16joins.tl index 8c8378b..49ecbcf 100644 --- a/t/run/16joins.tl +++ b/t/run/16joins.tl @@ -7,7 +7,7 @@ BEGIN { eval "use DBD::SQLite"; plan $@ ? ( skip_all => 'needs DBD::SQLite for testing' ) - : ( tests => 41 ); + : ( tests => 42 ); } # figure out if we've got a version of sqlite that is older than 3.2.6, in @@ -144,11 +144,11 @@ $trace->close; unlink 't/var/dbic.trace'; is($selects, 1, 'prefetch ran only 1 select statement'); -# test for partial prefetch via cols attr +# test for partial prefetch via columns attr my $cd = $schema->resultset('CD')->find(1, { - cols => [qw/title artist.name/], - join => 'artist' + columns => [qw/title artist.name/], + join => { 'artist' => {} } } ); ok(eval { $cd->artist->name eq 'Caterwauler McCrae' }, 'single related column prefetched'); @@ -253,7 +253,16 @@ SKIP: { cmp_ok( $rs->count, '==', 3, "count() ok after group_by on related column" ); } -cmp_ok( scalar $rs->all, '==', 3, "all() returns same count as count() after group_by on related column" ); +$rs = $schema->resultset("Artist")->search( + {}, + { join => [qw/ cds /], group_by => [qw/ me.name /], having =>{ 'MAX(cds.cdid)'=> \'< 5' } } +); + +cmp_ok( $rs->all, '==', 2, "results ok after group_by on related column with a having" ); + +$rs = $rs->search( undef, { having =>{ 'count(*)'=> \'> 2' }}); + +cmp_ok( $rs->all, '==', 1, "count() ok after group_by on related column with a having" ); $rs = $schema->resultset("Artist")->search( { 'cds.title' => 'Spoonful of bees',