X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRelationship%2FHasMany.pm;h=053eda6d514e59340fc517a1c5d03331688fc4d2;hb=ddcc02d14d03169c54c65db9f0f446836483ba55;hp=c9d17772c23599d68c5b4b24f98b15d14230e10d;hpb=d77ee505c77d14a8a89cf356a014e7fbdc4e3967;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Relationship/HasMany.pm b/lib/DBIx/Class/Relationship/HasMany.pm index c9d1777..053eda6 100644 --- a/lib/DBIx/Class/Relationship/HasMany.pm +++ b/lib/DBIx/Class/Relationship/HasMany.pm @@ -3,7 +3,7 @@ package # hide from PAUSE use strict; use warnings; -use Try::Tiny; +use DBIx::Class::_Util 'dbic_internal_try'; use namespace::clean; our %_pod_inherit_config = @@ -15,21 +15,8 @@ sub has_many { my ($class, $rel, $f_class, $cond, $attrs) = @_; unless (ref $cond) { - $class->ensure_class_loaded($f_class); - my ($pri, $too_many) = try { $class->_pri_cols } - catch { - $class->throw_exception("Can't infer join condition for '$rel' on ${class}: $_"); - }; - - $class->throw_exception( - "has_many can only infer join for a single primary key; ". - "${class} has more" - ) if $too_many; - - $class->throw_exception( - "has_many needs a primary key to infer a join; ". - "${class} has none" - ) if !defined $pri && (!defined $cond || !length $cond); + + my $pri = $class->result_source_instance->_single_pri_col_or_die; my ($f_key,$guess); if (defined $cond && length $cond) { @@ -38,13 +25,16 @@ sub has_many { } else { $class =~ /([^\:]+)$/; # match is safe - $class can't be '' $f_key = lc $1; # go ahead and guess; best we can do - $guess = "using our class name '$class' as foreign key"; + $guess = "using our class name '$class' as foreign key source"; } - my $f_class_loaded = try { $f_class->columns }; - $class->throw_exception( - "No such column '$f_key' on foreign class ${f_class} ($guess)" - ) if $f_class_loaded && !$f_class->has_column($f_key); +# FIXME - this check needs to be moved to schema-composition time... +# # only perform checks if the far side appears already loaded +# if (my $f_rsrc = dbic_internal_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}" }; } @@ -56,6 +46,7 @@ sub has_many { join_type => 'LEFT', cascade_delete => $default_cascade, cascade_copy => $default_cascade, + is_depends_on => 0, %{$attrs||{}} }); }