aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/lint_warnings.sql
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-08-31 12:11:58 +0100
committerChristopher Baines <mail@cbaines.net>2019-09-01 13:12:10 +0100
commit6b9977f62eef54678c7a53844ad5d26d8efeecb0 (patch)
treed76ededb17ec03e0705258bb9565782c7e16af76 /sqitch/deploy/lint_warnings.sql
parentbf469504eb4df95a3349328dc10095d172630fcd (diff)
downloaddata-service-6b9977f62eef54678c7a53844ad5d26d8efeecb0.tar
data-service-6b9977f62eef54678c7a53844ad5d26d8efeecb0.tar.gz
Store lint warnings in the database
This commit adds the relevant tables and code to store lint warnings in the database. Currently, only lint checkers which don't require access to the network will be run, as this allows the processing to happen without network access. Also, this functionality won't work in older versions of Guix which don't expose the lint warnings in a compatible way.
Diffstat (limited to 'sqitch/deploy/lint_warnings.sql')
-rw-r--r--sqitch/deploy/lint_warnings.sql41
1 files changed, 41 insertions, 0 deletions
diff --git a/sqitch/deploy/lint_warnings.sql b/sqitch/deploy/lint_warnings.sql
new file mode 100644
index 0000000..1051b74
--- /dev/null
+++ b/sqitch/deploy/lint_warnings.sql
@@ -0,0 +1,41 @@
+-- Deploy guix-data-service:lint_warnings to pg
+
+BEGIN;
+
+CREATE TABLE lint_checkers (
+ id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ name varchar NOT NULL,
+ description varchar NOT NULL,
+ network_dependent boolean NOT NULL,
+ UNIQUE (name, description, network_dependent)
+);
+
+CREATE TABLE lint_warning_messages (
+ id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ locale varchar NOT NULL,
+ message varchar NOT NULL,
+ UNIQUE (locale, message)
+);
+
+CREATE TABLE lint_warning_message_sets (
+ id integer NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ message_ids integer[] NOT NULL,
+ UNIQUE (message_ids)
+);
+
+CREATE TABLE lint_warnings (
+ id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ lint_checker_id integer NOT NULL,
+ package_id integer NOT NULL REFERENCES packages (id),
+ location_id integer NOT NULL REFERENCES locations (id),
+ lint_warning_message_set_id integer NOT NULL REFERENCES lint_warning_message_sets (id),
+ UNIQUE (lint_checker_id, package_id, location_id, lint_warning_message_set_id)
+);
+
+CREATE TABLE guix_revision_lint_warnings (
+ lint_warning_id integer NOT NULL REFERENCES lint_warnings (id),
+ guix_revision_id integer NOT NULL REFERENCES guix_revisions (id),
+ PRIMARY KEY (lint_warning_id, guix_revision_id)
+);
+
+COMMIT;