hydra/src/sql/upgrade-64.sql

5 lines
209 B
MySQL
Raw Normal View History

-- Index more exactly what the latest-finished query looks for.
create index IndexFinishedSuccessfulBuilds
on Builds(id DESC, buildstatus, finished, job, jobset_id)
where buildstatus = 0 and finished = 1;