diff options
author | Helmut Grohne <helmut@subdivi.de> | 2020-10-08 07:17:57 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2020-10-08 07:20:27 +0200 |
commit | 01368f3501ef6df554c333d2d4e2256f0e7dd723 (patch) | |
tree | ab971059bfd6a03c86ab471663c6da8563e41e5a /build.py | |
parent | 26db3561b6f090a7294501d8ce1855db57611f21 (diff) | |
download | crossqa-01368f3501ef6df554c333d2d4e2256f0e7dd723.tar.gz |
build.py: fix up sql statement after refactoring
Fixes: d8a9b7aa8c98 ("add build architecture to schema of building table")
Diffstat (limited to 'build.py')
-rwxr-xr-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ def main(): AND NOT EXISTS (SELECT 1 FROM building WHERE d.source = building.source OR ('amd64' = building.buildarch AND - d.architecture = building.hostarch) + d.architecture = building.hostarch)) ORDER BY r.priority DESC, r.requesttime ASC, random() LIMIT 1;""") row = cur.fetchone() |