X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRow.pm;h=c08c00d887afe131c2130f06a8db1596f1428e58;hb=ada35b5225425ea5e0ebd7324f189553f72bb8c0;hp=0746ad3b9c9cd374ffcad2efd7aac11a10cc6a76;hpb=2007929b1d9c679e67f85a9ab37c804111e66311;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Row.pm b/lib/DBIx/Class/Row.pm index 0746ad3..c08c00d 100644 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -112,7 +112,7 @@ sub __new_related_find_or_new_helper { ->resultset ->new_result($data); } - if ($self->result_source->pk_depends_on($relname, $data)) { + if ($self->result_source->_pk_depends_on($relname, $data)) { MULTICREATE_DEBUG and warn "MC $self constructing $relname via find_or_new"; return $self->result_source ->related_source($relname) @@ -132,7 +132,7 @@ sub __their_pk_needs_us { # this should maybe be in resultsource. foreach my $key (keys %$reverse) { # if their primary key depends on us, then we have to # just create a result and we'll fill it out afterwards - return 1 if $rel_source->pk_depends_on($key, $us); + return 1 if $rel_source->_pk_depends_on($key, $us); } return 0; } @@ -304,7 +304,7 @@ sub insert { next REL unless (Scalar::Util::blessed($rel_obj) && $rel_obj->isa('DBIx::Class::Row')); - next REL unless $source->pk_depends_on( + next REL unless $source->_pk_depends_on( $relname, { $rel_obj->get_columns } ); @@ -880,10 +880,10 @@ Inserts a new row into the database, as a copy of the original object. If a hashref of replacement data is supplied, these will take precedence over data in the original. -If the row has related objects in a -L then those objects may be copied -too depending on the L -relationship attribute. +Relationships will be followed by the copy procedure B if the +relationship specifes a true value for its +L attribute. C +is set by default on C relationships and unset on all others. =cut @@ -913,7 +913,7 @@ sub copy { next unless $rel_info->{attrs}{cascade_copy}; - my $resolved = $self->result_source->resolve_condition( + my $resolved = $self->result_source->_resolve_condition( $rel_info->{cond}, $rel, $new );