Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
fba578b2
Commit
fba578b2
authored
Jun 25, 2007
by
Javier Herrero
Browse files
Add a missing $sth->finish
parent
ac52bc8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
modules/Bio/EnsEMBL/DBSQL/BaseMetaContainer.pm
modules/Bio/EnsEMBL/DBSQL/BaseMetaContainer.pm
+1
-0
modules/Bio/EnsEMBL/DBSQL/SliceAdaptor.pm
modules/Bio/EnsEMBL/DBSQL/SliceAdaptor.pm
+1
-0
No files found.
modules/Bio/EnsEMBL/DBSQL/BaseMetaContainer.pm
View file @
fba578b2
...
...
@@ -103,6 +103,7 @@ sub list_value_by_key {
while
(
my
$arrRef
=
$sth
->
fetchrow_arrayref
()
)
{
push
(
@result
,
$arrRef
->
[
0
]
);
}
$sth
->
finish
();
$self
->
{'
cache
'}
->
{
$key
}
=
\
@result
;
return
\
@result
;
...
...
modules/Bio/EnsEMBL/DBSQL/SliceAdaptor.pm
View file @
fba578b2
...
...
@@ -1493,6 +1493,7 @@ sub _build_exception_cache {
$hash
{
$result
[
0
]}
||=
[]
;
push
(
@
{
$hash
{
$result
[
0
]}},
\
@result
);
}
$sth
->
finish
();
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment