X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FResultClass%2FHashRefInflator.pm;h=4d002abeeee030e9d03a3d840c38db1abdecde6b;hb=52864fbd5;hp=4223930bf6cf23db39cafcb12bef528ca517c7e1;hpb=b8ced1f527fe09d52ba7bd4c8e2820fddb278e20;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/ResultClass/HashRefInflator.pm b/lib/DBIx/Class/ResultClass/HashRefInflator.pm index 4223930..4d002ab 100644 --- a/lib/DBIx/Class/ResultClass/HashRefInflator.pm +++ b/lib/DBIx/Class/ResultClass/HashRefInflator.pm @@ -66,37 +66,26 @@ my $mk_hash; $mk_hash = sub { my $hash = { + # the main hash could be an undef if we are processing a skipped-over join $_[0] ? %{$_[0]} : (), # the second arg is a hash of arrays for each prefetched relation - map { - ref $_[1]->{$_}[0] eq 'ARRAY' # multi rel or not? - ? ( $_ => [ map - { $mk_hash->(@$_) || () } - @{$_[1]->{$_}} - ] ) - : ( $_ => $mk_hash->( @{$_[1]->{$_}} ) ) - - } ( $_[1] ? ( keys %{$_[1]} ) : () ) + map { $_ => ( + + # null-branch or not + ref $_[1]->{$_} eq $DBIx::Class::ResultSource::RowParser::Util::null_branch_class + + ? ref $_[1]->{$_}[0] eq 'ARRAY' ? [] : undef + + : ref $_[1]->{$_}[0] eq 'ARRAY' + ? [ map { $mk_hash->( @$_ ) || () } @{$_[1]->{$_}} ] + : $mk_hash->( @{$_[1]->{$_}} ) + + ) } ($_[1] ? keys %{$_[1]} : ()) }; - # if there is at least one defined column *OR* we are at the root of - # the resultset - consider the result real (and not an emtpy has_many - # rel containing one empty hashref) - # an empty arrayref is an empty multi-sub-prefetch - don't consider - # those either - return $hash if $_[2]; - - for (values %$hash) { - return $hash if ( - defined $_ - and - (ref $_ ne 'ARRAY' or scalar @$_) - ); - } - - return undef; + ($_[2] || keys %$hash) ? $hash : undef; }; =head1 METHODS