diff options
author | Christopher Baines <mail@cbaines.net> | 2020-11-06 19:27:16 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-11-06 19:27:16 +0000 |
commit | 9b44218b3e5f8168aec5a8eef467f0cb9a5b8473 (patch) | |
tree | 68f51f1f431101584d77bae1746d152720f80b18 /sqitch/sqlite/revert | |
parent | f787df32634323d627e5f0f14f96aa3ac58aad21 (diff) | |
download | build-coordinator-9b44218b3e5f8168aec5a8eef467f0cb9a5b8473.tar build-coordinator-9b44218b3e5f8168aec5a8eef467f0cb9a5b8473.tar.gz |
Add an unbuilt_outputs table
One of the slow things in the derivation ordered allocator is working out what
outputs are unbuilt, as this requires looking at all the derivation
outputs (of which there are lots), and checking if any build exists which has
succeeded.
Diffstat (limited to 'sqitch/sqlite/revert')
-rw-r--r-- | sqitch/sqlite/revert/add_unbuilt_outputs_table.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/sqlite/revert/add_unbuilt_outputs_table.sql b/sqitch/sqlite/revert/add_unbuilt_outputs_table.sql new file mode 100644 index 0000000..0cd572e --- /dev/null +++ b/sqitch/sqlite/revert/add_unbuilt_outputs_table.sql @@ -0,0 +1,7 @@ +-- Revert guix-build-coordinator:add_unbuilt_outputs_table from sqlite + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; |