Remove unnecessary parentheses in SQL query

These make SQLite 3.7.16.2 crash.

http://hydra.nixos.org/build/4815315
This commit is contained in:
Eelco Dolstra 2013-04-29 21:38:57 +02:00
parent 8158093884
commit 45a1bb9926

View file

@ -540,7 +540,7 @@ sub makeQueries {
QUERY
);
makeSource("ActiveJobs$name", "(select distinct project, jobset, job from Builds where isCurrent = 1 $constraint)");
makeSource("ActiveJobs$name", "select distinct project, jobset, job from Builds where isCurrent = 1 $constraint");
makeSource(
"LatestSucceeded$name",