]> git.decadent.org.uk Git - dak.git/commitdiff
add override stuff to SQL files.
authorJames Troup <james@nocrew.org>
Thu, 25 Jan 2001 06:02:28 +0000 (06:02 +0000)
committerJames Troup <james@nocrew.org>
Thu, 25 Jan 2001 06:02:28 +0000 (06:02 +0000)
add_constraints.sql
docs/.cvsignore
init_pool.sql

index dd366c3a3bf515e24fccfe77da1fdb1e83f22d6d..b52b103b510ef3d70be40eeab7eede78293a9796 100644 (file)
@@ -1,4 +1,4 @@
--- Fix up after population off the database...
+-- Fix up after population of the database...
 
 -- First of all readd the constraints (takes ~1:30 on auric)
 
@@ -24,6 +24,12 @@ ALTER TABLE bin_associations ADD CONSTRAINT bin_associations_bin FOREIGN KEY (bi
 ALTER TABLE src_associations ADD CONSTRAINT src_associations_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
 ALTER TABLE src_associations ADD CONSTRAINT src_associations_source FOREIGN KEY (source) REFERENCES source(id) MATCH FULL;
 
+ALTER TABLE override ADD CONSTRAINT override_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
+ALTER TABLE override ADD CONSTRAINT override_component FOREIGN KEY (component) REFERENCES component(id) MATCH FULL;
+ALTER TABLE override ADD CONSTRAINT override_priority FOREIGN KEY (priority) REFERENCES priority(id) MATCH FULL;
+ALTER TABLE override ADD CONSTRAINT override_section FOREIGN KEY (section) REFERENCES section(id) MATCH FULL;
+ALTER TABLE override ADD CONSTRAINT override_type FOREIGN KEY (type) REFERENCES override_type(id) MATCH FULL;
+
 -- Then correct all the id SERIAL PRIMARY KEY columns...
 
 CREATE FUNCTION files_id_max() RETURNS INT4
@@ -44,6 +50,15 @@ CREATE FUNCTION binaries_id_max() RETURNS INT4
 CREATE FUNCTION bin_associations_id_max() RETURNS INT4
     AS 'SELECT max(id) FROM bin_associations' 
     LANGUAGE 'sql';
+CREATE FUNCTION section_id_max() RETURNS INT4
+    AS 'SELECT max(id) FROM section' 
+    LANGUAGE 'sql';
+CREATE FUNCTION priority_id_max() RETURNS INT4
+    AS 'SELECT max(id) FROM priority' 
+    LANGUAGE 'sql';
+CREATE FUNCTION override_type_id_max() RETURNS INT4
+    AS 'SELECT max(id) FROM override_type' 
+    LANGUAGE 'sql';
 
 SELECT setval('files_id_seq', files_id_max());
 SELECT setval('source_id_seq', source_id_max());
@@ -51,6 +66,9 @@ SELECT setval('src_associations_id_seq', src_associations_id_max());
 SELECT setval('dsc_files_id_seq', dsc_files_id_max());
 SELECT setval('binaries_id_seq', binaries_id_max());
 SELECT setval('bin_associations_id_seq', bin_associations_id_max());
+SELECT setval('section_id_seq', section_id_max());
+SELECT setval('priority_id_seq', priority_id_max());
+SELECT setval('override_type_id_seq', override_type_id_max());
 
 -- Vacuum the tables for efficency
 
@@ -67,6 +85,10 @@ VACUUM suite;
 VACUUM suite_architectures;
 VACUUM bin_associations;
 VACUUM src_associations;
+VACUUM section;
+VACUUM priority;
+VACUUM override_type;
+VACUUM override;
 
 -- FIXME: has to be a better way to do this
 GRANT ALL ON 
index a423dbea3af1ed13f515187069336ed249e631dc..151d0f8dc36e8627f280969ec32af3ceb877d737 100644 (file)
@@ -1 +1,2 @@
 manpage.*
+*.1
index 8da4a79fdebb39bc5b7f9dbec408612e6aeb7187..5116f7e7cf498eb245a1eed55426104a1852cb8a 100644 (file)
@@ -106,3 +106,30 @@ CREATE TABLE src_associations (
        source INT4 NOT NULL, -- REFERENCES source
        unique (suite, source)
 );
+
+CREATE TABLE section (
+       id SERIAL PRIMARY KEY,
+       section TEXT UNIQUE NOT NULL
+);
+
+CREATE TABLE priority (
+       id SERIAL PRIMARY KEY,
+       priority TEXT UNIQUE NOT NULL,
+       level INT4 UNIQUE NOT NULL
+);
+
+CREATE TABLE override_type (
+       id SERIAL PRIMARY KEY,
+       type TEXT UNIQUE NOT NULL
+);
+
+CREATE TABLE override (
+       package TEXT NOT NULL, 
+       suite INT4 NOT NULL, -- references suite
+       component INT4 NOT NULL, -- references component
+       priority INT4, -- references priority
+       section INT4 NOT NULL, -- references section
+       type INT4 NOT NULL, -- references override_type
+       maintainer TEXT,
+       unique (suite, component, package, type)
+);