X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRow.pm;h=f59532a3f24113a6ccf99ae6a8290cf8afa58edf;hb=fc27a8673e1a18b155da3619c93e992bf9ec676f;hp=4c6660088f9074b104d0f9d5a33c86917c634d4e;hpb=5160b40103b81efb28aeb46c61a0d071c636a923;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Row.pm b/lib/DBIx/Class/Row.pm index 4c66600..f59532a 100644 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -19,7 +19,7 @@ DBIx::Class::Row - Basic row methods =head1 DESCRIPTION This class is responsible for defining and doing basic operations on rows -derived from L objects. +derived from L objects. =head1 METHODS @@ -96,10 +96,14 @@ UPDATE query to commit any changes to the object to the db if required. sub update { my ($self, $upd) = @_; $self->throw_exception( "Not in database" ) unless $self->in_storage; + $self->set_columns($upd) if $upd; my %to_update = $self->get_dirty_columns; return $self unless keys %to_update; + my $ident_cond = $self->ident_condition; + $self->throw_exception("Cannot safely update a row in a PK-less table") + if ! keys %$ident_cond; my $rows = $self->result_source->storage->update( - $self->result_source->from, \%to_update, $self->ident_condition); + $self->result_source->from, \%to_update, $ident_cond); if ($rows == 0) { $self->throw_exception( "Can't update ${self}: row not found" ); } elsif ($rows > 1) { @@ -123,8 +127,11 @@ sub delete { my $self = shift; if (ref $self) { $self->throw_exception( "Not in database" ) unless $self->in_storage; + my $ident_cond = $self->ident_condition; + $self->throw_exception("Cannot safely delete a row in a PK-less table") + if ! keys %$ident_cond; $self->result_source->storage->delete( - $self->result_source->from, $self->ident_condition); + $self->result_source->from, $ident_cond); $self->in_storage(undef); } else { $self->throw_exception("Can't do class delete without a ResultSource instance") @@ -272,17 +279,16 @@ sub inflate_result { PRE: foreach my $pre (keys %{$prefetch||{}}) { my $pre_source = $source->related_source($pre); $class->throw_exception("Can't prefetch non-existant relationship ${pre}") unless $pre_source; - my $fetched = $pre_source->result_class->inflate_result( - $pre_source, @{$prefetch->{$pre}}); + my $fetched; + unless ($pre_source->primary_columns == grep { exists $prefetch->{$pre}[0]{$_} + and !defined $prefetch->{$pre}[0]{$_} } $pre_source->primary_columns) + { + $fetched = $pre_source->result_class->inflate_result( + $pre_source, @{$prefetch->{$pre}}); + } my $accessor = $source->relationship_info($pre)->{attrs}{accessor}; $class->throw_exception("No accessor for prefetched $pre") unless defined $accessor; - PRIMARY: foreach my $pri ($pre_source->primary_columns) { - unless (defined $fetched->get_column($pri)) { - undef $fetched; - last PRIMARY; - } - } if ($accessor eq 'single') { $new->{_relationship_data}{$pre} = $fetched; } elsif ($accessor eq 'filter') {