Fix the join/prefetch resolver when dealing with ''/undef/()
[dbsrgits/DBIx-Class.git] / t / row / find_one_has_many.t
CommitLineData
3170049a 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6use lib qw(t/lib);
7use DBICTest;
8use DBIC::DebugObj;
9use DBIC::SqlMakerTest;
10
11my $schema = DBICTest->init_schema();
12
13$schema->resultset('Artist')->delete;
14$schema->resultset('CD')->delete;
15
16my $artist = $schema->resultset("Artist")->create({ artistid => 21, name => 'Michael Jackson', rank => 20 });
17my $cd = $artist->create_related('cds', { year => 1975, title => 'Compilation from 1975' });
18
19my ($sql, @bind);
20local $schema->storage->{debug} = 1;
21local $schema->storage->{debugobj} = DBIC::DebugObj->new(\$sql, \@bind);
22
23my $find_cd = $artist->find_related('cds',{title => 'Compilation from 1975'});
24
25s/^'//, s/'\z// for @bind; # why does DBIC::DebugObj not do this?
26
27is_same_sql_bind (
28 $sql,
29 \@bind,
30 'SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me WHERE ( ( me.artist = ? AND me.title = ? ) ) ORDER BY year ASC',
31 [21, 'Compilation from 1975'],
32 'find_related only uses foreign key condition once',
33);
34
35done_testing;