diff options
author | Christopher Baines <mail@cbaines.net> | 2021-02-02 23:36:56 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-02-02 23:36:56 +0000 |
commit | 7fbcb3a3c26906ee130bcc64e88ea7a2b390de2c (patch) | |
tree | 1b1f55d68015f18fabea46865c3762a61d150691 /sqitch/verify | |
parent | 6195d7b18f913d0f8f5540858676b7d6c45196b7 (diff) | |
download | data-service-7fbcb3a3c26906ee130bcc64e88ea7a2b390de2c.tar data-service-7fbcb3a3c26906ee130bcc64e88ea7a2b390de2c.tar.gz |
Store channel instance derivations in a separate transaction
This means that these derivations are stored, even if a later part of the
process fails. Having the channel instance derivations stored might help work
out why the failure occurred, or better display information about it.
Diffstat (limited to 'sqitch/verify')
-rw-r--r-- | sqitch/verify/remove_guix_revisions_store_path.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/verify/remove_guix_revisions_store_path.sql b/sqitch/verify/remove_guix_revisions_store_path.sql new file mode 100644 index 0000000..87deee3 --- /dev/null +++ b/sqitch/verify/remove_guix_revisions_store_path.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:remove_guix_revisions_store_path on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |