1 """
2 Add a component - suite mapping to only expose certain components in certain suites
3
4 @contact: Debian FTP Master <ftpmaster@debian.org>
5 @copyright: 2012 Varnish Software AS
6 @author: Tollef Fog Heen <tfheen@varnish-software.com>
7 @license: GNU General Public License version 2 or later
8 """
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 import psycopg2
27
28 from daklib.dak_exceptions import DBUpdateError
29
30
31
32
34 print(__doc__)
35 try:
36 c = self.db.cursor()
37
38 c.execute(
39 """
40 CREATE TABLE component_suite (
41 component_id INTEGER NOT NULL REFERENCES component(id) ON DELETE CASCADE,
42 suite_id INTEGER NOT NULL REFERENCES suite(id) ON DELETE CASCADE,
43 PRIMARY KEY (component_id, suite_id)
44 )
45 """
46 )
47
48 c.execute(
49 "INSERT INTO component_suite(component_id, suite_id) SELECT component.id,suite.id from suite, component"
50 )
51
52 c.execute("UPDATE config SET value = '100' WHERE name = 'db_revision'")
53 self.db.commit()
54
55 except psycopg2.ProgrammingError as msg:
56 self.db.rollback()
57 raise DBUpdateError(
58 "Unable to apply sick update 100, rollback issued. Error message: {0}".format(
59 msg
60 )
61 )
62