X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRelationship%2FHasOne.pm;h=94981dcc3dc9e1d28215c0235687256c6a482eb8;hb=a4cff052c2648688a0ccf30781899c6f00777f0e;hp=f1c9ccc8682038190b153628bc4139c4eac1a79e;hpb=9e7525a2cc9d7459ee89a6d2c85913a8b8c4eff9;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Relationship/HasOne.pm b/lib/DBIx/Class/Relationship/HasOne.pm index f1c9ccc..94981dc 100644 --- a/lib/DBIx/Class/Relationship/HasOne.pm +++ b/lib/DBIx/Class/Relationship/HasOne.pm @@ -35,7 +35,10 @@ sub _has_one { $class->ensure_class_loaded($f_class); $f_rsrc = try { - $f_class->result_source_instance; + my $r = $f_class->result_source_instance; + die "There got to be some columns by now... (exception caught and rewritten by catch below)" + unless $r->columns; + $r; } catch { $class->throw_exception( @@ -54,13 +57,14 @@ sub _has_one { } } - # only perform checks if the far side was not preloaded above *AND* - # appears to have been loaded by something else (has a rsrc_instance) - if (! $f_rsrc and $f_rsrc = try { $f_class->result_source_instance }) { - $class->throw_exception( - "No such column '$f_key' on foreign class ${f_class} ($guess)" - ) if !$f_rsrc->has_column($f_key); - } +# FIXME - this check needs to be moved to schema-composition time... +# # only perform checks if the far side was not preloaded above *AND* +# # appears to have been loaded by something else (has a rsrc_instance) +# if (! $f_rsrc and $f_rsrc = try { $f_class->result_source_instance }) { +# $class->throw_exception( +# "No such column '$f_key' on foreign class ${f_class} ($guess)" +# ) if !$f_rsrc->has_column($f_key); +# } $cond = { "foreign.${f_key}" => "self.${pri}" }; } @@ -73,6 +77,7 @@ sub _has_one { { accessor => 'single', cascade_update => $default_cascade, cascade_delete => $default_cascade, + is_depends_on => 0, ($join_type ? ('join_type' => $join_type) : ()), %{$attrs || {}} }); 1; @@ -87,8 +92,9 @@ sub _validate_has_one_condition { my $self_id = $cond->{$foreign_id}; # we can ignore a bad $self_id because add_relationship handles this - # warning + # exception return unless $self_id =~ /^self\.(.*)$/; + my $key = $1; $class->throw_exception("Defining rel on ${class} that includes '$key' but no such column defined here yet") unless $class->has_column($key);