[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: Add index for package_metadata
From: |
Christopher Baines |
Subject: |
branch master updated: Add index for package_metadata |
Date: |
Thu, 27 May 2021 16:27:23 -0400 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository data-service.
The following commit(s) were added to refs/heads/master by this push:
new 9c1b989 Add index for package_metadata
9c1b989 is described below
commit 9c1b989d203e49ad99eb69514b3ff1981acd9e5a
Author: Canan Talayhan <canan.t.talayhan@gmail.com>
AuthorDate: Thu May 27 22:59:13 2021 +0300
Add index for package_metadata
This index speeds up inserting new entries to the package_metadata table.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
sqitch/deploy/package_metadata_location_id_index.sql | 7 +++++++
sqitch/revert/package_metadata_location_id_index.sql | 7 +++++++
sqitch/sqitch.plan | 1 +
sqitch/verify/package_metadata_location_id_index.sql | 7 +++++++
4 files changed, 22 insertions(+)
diff --git a/sqitch/deploy/package_metadata_location_id_index.sql
b/sqitch/deploy/package_metadata_location_id_index.sql
new file mode 100644
index 0000000..3fa2aed
--- /dev/null
+++ b/sqitch/deploy/package_metadata_location_id_index.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-data-service:package_metadata_location_id_index to pg
+
+BEGIN;
+
+CREATE INDEX package_metadata_location_id ON package_metadata (location_id);
+
+COMMIT;
diff --git a/sqitch/revert/package_metadata_location_id_index.sql
b/sqitch/revert/package_metadata_location_id_index.sql
new file mode 100644
index 0000000..c0c980c
--- /dev/null
+++ b/sqitch/revert/package_metadata_location_id_index.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:package_metadata_location_id_index from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan
index 4b969ad..db4bac9 100644
--- a/sqitch/sqitch.plan
+++ b/sqitch/sqitch.plan
@@ -80,3 +80,4 @@ increase_derivation_inputs_statistics_targets
2020-12-27T10:34:58Z Christopher B
remove_guix_revisions_store_path 2021-02-02T20:06:18Z Christopher Baines
<mail@cbaines.net> # Drop guix_revisions.store_path
systems_table 2021-04-22T08:12:10Z Christopher Baines <mail@cbaines.net> # Add
a systems table
some_indexes 2021-05-17T17:36:38Z Christopher Baines <mail@cbaines.net> # Add
some indexes
+package_metadata_location_id_index 2021-05-27T19:51:13Z Canan Talayhan
<canan.t.talayhan@gmail.com> # Add index for location id
diff --git a/sqitch/verify/package_metadata_location_id_index.sql
b/sqitch/verify/package_metadata_location_id_index.sql
new file mode 100644
index 0000000..f300883
--- /dev/null
+++ b/sqitch/verify/package_metadata_location_id_index.sql
@@ -0,0 +1,7 @@
+-- Verify guix-data-service:package_metadata_location_id_index on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: Add index for package_metadata,
Christopher Baines <=