X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FResultSet%2FRecursiveUpdate.pm;h=94b1c07dde938807d001607ae6dfecd1e2e0c091;hp=f70e4fbc63ef126a52a91b1457ce5c27a9f4f2cf;hb=ac6bae45084484cdef44619daf60aa6b9eb2d02a;hpb=aba481dc507497b0c4629d8f43adc70284ac1d24 diff --git a/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm b/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm index f70e4fb..94b1c07 100644 --- a/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm +++ b/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm @@ -79,14 +79,12 @@ sub recursive_update { my %fixed_fields = map { $_ => 1 } @$fixed_fields if $fixed_fields; + # the updates hashref might contain the pk columns # but with an undefined value my @missing = - grep { - ( !exists $updates->{$_} - || ( exists $updates->{$_} && !defined $updates->{$_} ) ) - && !exists $fixed_fields{$_} - } $source->primary_columns; + grep { !defined $updates->{$_} && !exists $fixed_fields{$_} } + $source->primary_columns; # warn "MISSING: " . join(', ', @missing) . "\n"; if ( !defined $object && scalar @missing == 0 ) { @@ -97,12 +95,10 @@ sub recursive_update { # add the resolved columns to the updates hashref $updates = { %$updates, %$resolved }; + # the resolved hashref might contain the pk columns # but with an undefined value - @missing = grep { - !exists $resolved->{$_} - || ( exists $resolved->{$_} && !defined $resolved->{$_} ) - } @missing; + @missing = grep { !defined $resolved->{$_} } @missing; #warn "MISSING2: " . join( ', ', @missing ) . "\n"; if ( !defined $object && scalar @missing == 0 ) { @@ -111,7 +107,7 @@ sub recursive_update { $object = $self->find( $updates, { key => 'primary' } ); } - $object = $self->new( {} ) + $object = $self->new_result( {} ) unless defined $object; # warn Dumper( $updates ); use Data::Dumper; @@ -330,7 +326,7 @@ sub _update_relation { ->{is_nullable}; } - $if_not_submitted = $all_fks_nullable ? 'nullify' : 'delete' + $if_not_submitted = $all_fks_nullable ? 'set_to_null' : 'delete' unless defined $if_not_submitted; #warn "\tNULLABLE: $all_fks_nullable ACTION: $if_not_submitted\n"; @@ -391,9 +387,9 @@ sub _update_relation { $rs_rel_delist = $rs_rel_delist->search_rs( { -not => [@cond] } ); } + #warn "\tCOND: " . Dumper(\@cond); } - #warn "\tCOND: " . Dumper(\%cond); #my $rel_delist_cnt = $rs_rel_delist->count; if ( $if_not_submitted eq 'delete' ) { @@ -467,7 +463,7 @@ sub is_m2m { if ( $rclass->can('_m2m_metadata') ) { return $rclass->_m2m_metadata->{$relation}; } - my $object = $self->new( {} ); + my $object = $self->new_result( {} ); if ( $object->can($relation) and !$self->result_source->has_relationship($relation) and $object->can( 'set_' . $relation ) ) @@ -488,7 +484,7 @@ sub get_m2m_source { ->related_source( $rclass->_m2m_metadata->{$relation}{foreign_relation} ); } - my $object = $self->new( {} ); + my $object = $self->new_result( {} ); my $r = $object->$relation; return $r->result_source; }