Coverage for dak/dakdb/update96.py: 100%
1 statements
« prev ^ index » next coverage.py v7.6.0, created at 2026-08-03 16:46 +0000
« prev ^ index » next coverage.py v7.6.0, created at 2026-08-03 16:46 +0000
1"""
2Add world.suite_summary view.
4@contact: Debian FTP Master <ftpmaster@debian.org>
5@copyright: 2013, Ansgar Burchardt <ansgar@debian.org>
6@license: GNU General Public License version 2 or later
7"""
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23################################################################################
25statements = [
26 """
27CREATE OR REPLACE VIEW world.suite_summary AS
28 SELECT
29 s.source,
30 s.version,
31 uploader_fpr.fingerprint,
32 suite.suite_name AS distribution,
33 s.created AS date,
34 changed_by.name AS changed,
35 uploader.name AS uploaded
36 FROM source s
37 JOIN src_associations sa ON s.id = sa.source
38 JOIN suite ON sa.suite = suite.id
39 JOIN maintainer changed_by ON s.changedby = changed_by.id
40 LEFT JOIN fingerprint uploader_fpr ON s.sig_fpr = uploader_fpr.id
41 LEFT JOIN uid uploader ON uploader_fpr.uid = uploader.id
42""",
43]