Skip to content
Snippets Groups Projects
Commit 5fe763e3 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Add $sth->finish() in appropriate places.

parent 36243c6d
No related branches found
No related tags found
No related merge requests found
......@@ -242,6 +242,8 @@ WHERE relation.child_term_id = child_term.term_id
push( @{ $term->{'children'}{$relation} }, $child_term );
}
$sth->finish();
$term->{'child_terms_fetched'} = 1;
} else {
foreach my $relation ( values( %{ $term->{'children'} } ) ) {
......@@ -319,6 +321,8 @@ ORDER BY closure.distance, child_term.accession);
) );
}
$sth->finish();
return \@terms;
} ## end sub fetch_all_by_ancestor_term
......@@ -388,6 +392,8 @@ WHERE relation.child_term_id = ?
push( @{ $term->{'parents'}{$relation} }, $parent_term );
}
$sth->finish();
$term->{'parent_terms_fetched'} = 1;
} else {
foreach my $relation ( values( %{ $term->{'parents'} } ) ) {
......@@ -501,9 +507,13 @@ ORDER BY closure.distance, parent_term.accession);
'-name' => $name,
'-definition' => $definition,
) );
} else {
last;
}
}
$sth->finish();
return \@terms;
} ## end sub fetch_all_by_descendant_term
......@@ -579,6 +589,8 @@ ORDER BY closure.distance);
push( @{ $id_chart{$subparent_id}{$relation} }, $parent_id );
}
$sth->finish();
my @terms = @{ $this->fetch_by_dbID_list( [ keys(%id_chart) ] ) };
foreach my $term (@terms) {
......@@ -696,6 +708,8 @@ WHERE ontology.ontology_id = term.ontology_id
) );
}
$sth->finish();
return \@terms;
} ## end sub fetch_by_dbID_list
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment