1 package # hide from PAUSE
2 DBIx::Class::Relationship::HasOne;
8 shift->_has_one('LEFT' => @_);
12 shift->_has_one(undef() => @_);
16 my ($class, $join_type, $rel, $f_class, $cond, $attrs) = @_;
17 eval "require $f_class";
19 $class->throw_exception($@) unless $@ =~ /Can't locate/;
23 my ($pri, $too_many) = $class->primary_columns;
24 $class->throw_exception( "might_have/has_one can only infer join for a single primary key; ${class} has more" )
26 my $f_class_loaded = eval { $f_class->columns };
28 if (defined $cond && length $cond) {
30 $guess = "caller specified foreign key '$f_key'";
31 } elsif ($f_class_loaded && $f_class->has_column($rel)) {
33 $guess = "using given relationship '$rel' for foreign key";
35 ($f_key, $too_many) = $f_class->primary_columns;
36 $class->throw_exception( "might_have/has_one can only infer join for a single primary key; ${f_class} has more" )
38 $guess = "using primary key of foreign class for foreign key";
40 $class->throw_exception("No such column ${f_key} on foreign class ${f_class} ($guess)")
41 if $f_class_loaded && !$f_class->has_column($f_key);
42 $cond = { "foreign.${f_key}" => "self.${pri}" };
44 $class->add_relationship($rel, $f_class,
46 { accessor => 'single',
47 cascade_update => 1, cascade_delete => 1,
48 ($join_type ? ('join_type' => $join_type) : ()),