my $schema = shift;
use IO::File;
+use version;
BEGIN {
eval "use DBD::SQLite";
: ( tests => 41 );
}
+my $is_broken_sqlite = version->new($schema->storage->dbh->get_info(18)) lt '3.2.6' &&
+ $schema->storage->dbh->get_info(17) eq 'SQLite';
+
# test the abstract join => SQL generator
my $sa = new DBIC::SQL::Abstract;
{ group_by => [qw/ title me.cdid /] }
);
-cmp_ok( $rs->count, '==', 5, "count() ok after group_by on main pk" );
+SKIP: {
+ skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
+ if $is_broken_sqlite;
+ cmp_ok( $rs->count, '==', 5, "count() ok after group_by on main pk" );
+}
cmp_ok( scalar $rs->all, '==', 5, "all() returns same count as count() after group_by on main pk" );
{ join => [qw/ artist /], group_by => [qw/ artist.name /] }
);
-cmp_ok( $rs->count, '==', 3, "count() ok after group_by on related column" );
+SKIP: {
+ skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
+ if $is_broken_sqlite;
+ 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" );
'cds_2.title' => 'Forkful of bees' },
{ join => [ 'cds', 'cds' ] });
-cmp_ok($rs->count, '==', 1, "single artist returned from multi-join");
+SKIP: {
+ skip "SQLite < 3.2.6 doesn't understand COUNT(DISTINCT())", 1
+ if $is_broken_sqlite;
+ cmp_ok($rs->count, '==', 1, "single artist returned from multi-join");
+}
+
is($rs->next->name, 'Caterwauler McCrae', "Correct artist returned");
my $queries;