Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjust code, support situation as describe flowing #2

Merged
merged 1 commit into from Jun 26, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/Async/ORM.pm
Expand Up @@ -1194,8 +1194,11 @@ sub _map_row_to_object {
if ($rel_info->{subwith}) {
foreach my $subwith (@{$rel_info->{subwith}}) {
$parent_object = $parent_object->_related->{$subwith};
die "load $subwith first" unless $parent_object;
# do not check , for compatible when whole 'null' columns of a subwith
# die "load $subwith first" unless $parent_object;
last unless $parent_object;
}
splice @$row, 0, scalar @{$rel_info->{columns}} and next unless $parent_object;
}

foreach my $parent_object_ (
Expand Down