Permalink
Browse files

Use SQL query compatible with old RDBM

  • Loading branch information...
1 parent 3d1bc05 commit 4e5fbee54e65b59f328403e299026ee00f073081 @jherrero jherrero committed Sep 30, 2015
Showing with 1 addition and 1 deletion.
  1. +1 −1 eForge/eForge.pm
View
@@ -418,7 +418,7 @@ sub get_bits{
FROM probe_annotation
JOIN probe_bitstring USING (array_id, probe_id)
JOIN dataset USING (dataset_id)
- JOIN array USING (array_id)
+ JOIN array ON (array.array_id = probe_annotation.array_id)
WHERE array_tag = ? and dataset_tag = ?
AND probe_id IN (?". (",?" x ($end - $start)).")";
my $sth = $dbh->prepare_cached($sql); #get the blocks form the ld table

0 comments on commit 4e5fbee

Please sign in to comment.