X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F71mysql.t;fp=t%2F71mysql.t;h=d8254dba5d3416b7d5b9c4efab266ad935238cfe;hb=b5963465440da3fac2f38651f6470355b07a3a9d;hp=cf02a6136a0e992a5fe655fc9d9c912c18c26a83;hpb=577ef680ceebff618b85a41dec6177074f51b76c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/71mysql.t b/t/71mysql.t index cf02a61..d8254db 100644 --- a/t/71mysql.t +++ b/t/71mysql.t @@ -14,7 +14,7 @@ my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/}; plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test' unless ($dsn && $user); -plan tests => 23; +plan tests => 19; my $schema = DBICTest::Schema->connect($dsn, $user, $pass); @@ -122,41 +122,19 @@ SKIP: { ); my $owners2 = $schema->resultset ('Owners')->search ({ id => { -in => $owners->get_column ('me.id')->as_query }}); for ($owners, $owners2) { - lives_ok { is ($_->all, 2, 'Prefetched grouped search returns correct number of rows') } - || skip ('No test due to exception', 1); - lives_ok { is ($_->count, 2, 'Prefetched grouped search returns correct count') } - || skip ('No test due to exception', 1); + is ($_->all, 2, 'Prefetched grouped search returns correct number of rows'); + is ($_->count, 2, 'Prefetched grouped search returns correct count'); } - TODO: { - # try a ->prefetch direction (no select collapse) - my $books = $schema->resultset ('BooksInLibrary')->search ( - { 'owner.name' => 'wiggle' }, - { prefetch => 'owner', distinct => 1 } - ); - - local $TODO = 'MySQL is crazy - there seems to be no way to make this work'; - # error thrown is: - # Duplicate column name 'id' [for Statement " - # SELECT COUNT( * ) - # FROM ( - # SELECT me.id, me.source, me.owner, me.title, me.price, owner.id, owner.name - # FROM books me - # JOIN owners owner ON owner.id = me.owner - # WHERE ( ( owner.name = ? AND source = ? ) ) - # GROUP BY me.id, me.source, me.owner, me.title, me.price, owner.id, owner.name - # ) count_subq - # " with ParamValues: 0='wiggle', 1='Library'] - # - # go fucking figure - - my $books2 = $schema->resultset ('BooksInLibrary')->search ({ id => { -in => $books->get_column ('me.id')->as_query }}); - for ($books, $books2) { - lives_ok { is ($_->all, 1, 'Prefetched grouped search returns correct number of rows') } - || skip ('No test due to exception', 1); - lives_ok { is ($_->count, 1, 'Prefetched grouped search returns correct count') } - || skip ('No test due to exception', 1); - } + # try a ->prefetch direction (no select collapse) + my $books = $schema->resultset ('BooksInLibrary')->search ( + { 'owner.name' => 'wiggle' }, + { prefetch => 'owner', distinct => 1 } + ); + my $books2 = $schema->resultset ('BooksInLibrary')->search ({ id => { -in => $books->get_column ('me.id')->as_query }}); + for ($books, $books2) { + is ($_->all, 1, 'Prefetched grouped search returns correct number of rows'); + is ($_->count, 1, 'Prefetched grouped search returns correct count'); } }