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
638da2c1
Commit
638da2c1
authored
Jul 24, 2008
by
Andreas Kusalananda Kähäri
Browse files
Fix bug found by unit-tests.
parent
290ef29d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/Bio/EnsEMBL/DBSQL/SliceAdaptor.pm
modules/Bio/EnsEMBL/DBSQL/SliceAdaptor.pm
+4
-4
No files found.
modules/Bio/EnsEMBL/DBSQL/SliceAdaptor.pm
View file @
638da2c1
...
...
@@ -697,10 +697,10 @@ sub fetch_all {
$sth
->
execute
();
}
else
{
$sth
=
$self
->
prepare
(
'
SELECT seq_region_id, name,
'
.
'
length, coord_system_id
'
.
'
FROM seq_region sr
, coord_system cs
'
.
'
WHERE coord_system_id = ?
'
);
$self
->
prepare
(
'
SELECT
sr.
seq_region_id,
sr.
name,
'
.
'
sr.
length,
sr.
coord_system_id
'
.
'
FROM seq_region sr
'
.
'
WHERE
sr.
coord_system_id = ?
'
);
$sth
->
bind_param
(
1
,
$orig_cs
->
dbID
,
SQL_INTEGER
);
$sth
->
execute
();
...
...
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