guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: Add index on derivation_outputs id and derivation_id fields


From: Christopher Baines
Subject: 04/07: Add index on derivation_outputs id and derivation_id fields
Date: Sat, 12 Nov 2022 05:59:13 -0500 (EST)

cbaines pushed a commit to branch master
in repository data-service.

commit fc5f562731bc32fe53ccc4f913f697a63a093fdc
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sat Nov 12 10:42:04 2022 +0000

    Add index on derivation_outputs id and derivation_id fields
    
    This might help with doing recursive queries on the derivations graph.
---
 sqitch/deploy/derivation_outputs_id_and_derivation_id_idx.sql | 7 +++++++
 sqitch/revert/derivation_outputs_id_and_derivation_id_idx.sql | 7 +++++++
 sqitch/sqitch.plan                                            | 1 +
 sqitch/verify/derivation_outputs_id_and_derivation_id_idx.sql | 7 +++++++
 4 files changed, 22 insertions(+)

diff --git a/sqitch/deploy/derivation_outputs_id_and_derivation_id_idx.sql 
b/sqitch/deploy/derivation_outputs_id_and_derivation_id_idx.sql
new file mode 100644
index 0000000..1ec8e12
--- /dev/null
+++ b/sqitch/deploy/derivation_outputs_id_and_derivation_id_idx.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-data-service:derivation_outputs_id_and_derivation_id_idx to pg
+
+BEGIN;
+
+CREATE INDEX derivation_outputs_id_and_derivation_id ON derivation_outputs 
(id, derivation_id);
+
+COMMIT;
diff --git a/sqitch/revert/derivation_outputs_id_and_derivation_id_idx.sql 
b/sqitch/revert/derivation_outputs_id_and_derivation_id_idx.sql
new file mode 100644
index 0000000..aaefb3a
--- /dev/null
+++ b/sqitch/revert/derivation_outputs_id_and_derivation_id_idx.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:derivation_outputs_id_and_derivation_id_idx from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan
index 8bc4aeb..d331920 100644
--- a/sqitch/sqitch.plan
+++ b/sqitch/sqitch.plan
@@ -91,3 +91,4 @@ git_repositories_query_substitutes 2022-09-09T11:35:16Z Chris 
<chris@felis> # Ad
 package_derivations_id_package_id_idx 2022-09-14T09:24:30Z Chris <chris@felis> 
# Add index on package_derivations id and package_id
 blocked_builds 2022-11-07T11:27:28Z Chris <chris@felis> # Add blocked_builds
 package_derivations_extended_statistics 2022-11-12T10:40:18Z Chris 
<chris@felis> # Add extended statistics on package_derivations
+derivation_outputs_id_and_derivation_id_idx 2022-11-12T10:41:42Z Chris 
<chris@felis> # Add index on derivation_outputs id and derivation_id
diff --git a/sqitch/verify/derivation_outputs_id_and_derivation_id_idx.sql 
b/sqitch/verify/derivation_outputs_id_and_derivation_id_idx.sql
new file mode 100644
index 0000000..314b339
--- /dev/null
+++ b/sqitch/verify/derivation_outputs_id_and_derivation_id_idx.sql
@@ -0,0 +1,7 @@
+-- Verify guix-data-service:derivation_outputs_id_and_derivation_id_idx on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]