Skip to content
Snippets Groups Projects
Commit f9bc0235 authored by Vermaat's avatar Vermaat
Browse files

This is basically r296 and r297 applied to trunk by hand.

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@303 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent d014ab31
No related branches found
No related tags found
No related merge requests found
......@@ -1487,12 +1487,19 @@ class Batch(Db) :
@rtype: triple
"""
# To optimize this query, make sure to have two indices on the
# table:
# - UNIQUE INDEX (QueueID)
# - INDEX (JobID, QueueID)
statement = """
SELECT QueueID, Input, Flags
FROM BatchQueue
WHERE JobID = %s
ORDER BY QueueID
LIMIT 1;
FROM BatchQueue
WHERE QueueID = (
SELECT MIN(QueueID)
FROM BatchQueue
GROUP BY JobID
HAVING JobID = %s
);
""", jobID
results = self.query(statement)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment