Merge lp:~stevenk/launchpad/drop-unused-branch-function into lp:launchpad

Proposed by Steve Kowalik
Status: Merged
Approved by: Stuart Bishop
Approved revision: no longer in the source branch.
Merged at revision: 15898
Proposed branch: lp:~stevenk/launchpad/drop-unused-branch-function
Merge into: lp:launchpad
Diff against target: 12 lines (+8/-0)
1 file modified
database/schema/patch-2209-16-8.sql (+8/-0)
To merge this branch: bzr merge lp:~stevenk/launchpad/drop-unused-branch-function
Reviewer Review Type Date Requested Status
Stuart Bishop (community) db Approve
Robert Collins db Pending
Review via email: mp+122431@code.launchpad.net

Commit message

Drop the unused DB function update_transitively_private.

Description of the change

Drop the unused (and now, forbidden by the security config) DB function update_transitively_private. Good riddance.

To post a comment you must log in.
Revision history for this message
Stuart Bishop (stub) wrote :

ta

review: Approve (db)
Revision history for this message
Stuart Bishop (stub) wrote :

Applied to production

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'database/schema/patch-2209-16-8.sql'
2--- database/schema/patch-2209-16-8.sql 1970-01-01 00:00:00 +0000
3+++ database/schema/patch-2209-16-8.sql 2012-09-02 23:58:21 +0000
4@@ -0,0 +1,8 @@
5+-- Copyright 2012 Canonical Ltd. This software is licensed under the
6+-- GNU Affero General Public License version 3 (see the file LICENSE).
7+
8+SET client_min_messages=ERROR;
9+
10+DROP FUNCTION update_transitively_private(integer, integer, boolean);
11+
12+INSERT INTO LaunchpadDatabaseRevision VALUES (2209, 16, 8);