ZK76B5ZZCEOJQUDOVKDZPE6IN2YIXQONFUIJ633OAXNC73OG3YSAC auto res = txn.parameterized("select id, project, jobset, job, drvPath, maxsilent, timeout, timestamp, globalPriority from Builds where id > $1 and finished = 0 order by id")(lastBuildId).exec();
auto res = txn.parameterized("select id, project, jobset, job, drvPath, maxsilent, timeout, timestamp, globalPriority from Builds ""where id > $1 and finished = 0 order by globalPriority desc, id")(lastBuildId).exec();
while (true) {auto i = newBuilds.find(r->drvPath);if (i == newBuilds.end()) break;Build::ptr b = i->second;newBuilds.erase(i);createBuild(b);}
auto i = newBuildsByPath.find(r->drvPath);if (i == newBuildsByPath.end()) continue;auto j = newBuildsByID.find(i->second);if (j == newBuildsByID.end()) continue;createBuild(j->second);