aboutsummaryrefslogtreecommitdiff
path: root/sqitch/pg
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2021-12-22 11:41:27 +0000
committerChristopher Baines <mail@cbaines.net>2021-12-22 11:41:27 +0000
commit26a440be76e17df608407700302e12599d7dd681 (patch)
treec950d3ce71bb904262564dc4f0e422acb64bb5a2 /sqitch/pg
parent0504521fa8b7dbd3f854540c6675e777cb64121a (diff)
downloadbuild-coordinator-26a440be76e17df608407700302e12599d7dd681.tar
build-coordinator-26a440be76e17df608407700302e12599d7dd681.tar.gz
Fix unprocessed_builds_with_derived_priorities
A couple of the queries were wrong, this fixes it.
Diffstat (limited to 'sqitch/pg')
-rw-r--r--sqitch/pg/deploy/recreate_unprocessed_builds_with_derived_priorities.sql7
-rw-r--r--sqitch/pg/revert/recreate_unprocessed_builds_with_derived_priorities.sql7
-rw-r--r--sqitch/pg/verify/recreate_unprocessed_builds_with_derived_priorities.sql7
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/recreate_unprocessed_builds_with_derived_priorities.sql b/sqitch/pg/deploy/recreate_unprocessed_builds_with_derived_priorities.sql
new file mode 100644
index 0000000..adf111a
--- /dev/null
+++ b/sqitch/pg/deploy/recreate_unprocessed_builds_with_derived_priorities.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:recreate_unprocessed_builds_with_derived_priorities to pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/revert/recreate_unprocessed_builds_with_derived_priorities.sql b/sqitch/pg/revert/recreate_unprocessed_builds_with_derived_priorities.sql
new file mode 100644
index 0000000..74580bb
--- /dev/null
+++ b/sqitch/pg/revert/recreate_unprocessed_builds_with_derived_priorities.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:recreate_unprocessed_builds_with_derived_priorities from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/verify/recreate_unprocessed_builds_with_derived_priorities.sql b/sqitch/pg/verify/recreate_unprocessed_builds_with_derived_priorities.sql
new file mode 100644
index 0000000..828f1aa
--- /dev/null
+++ b/sqitch/pg/verify/recreate_unprocessed_builds_with_derived_priorities.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:recreate_unprocessed_builds_with_derived_priorities on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;