7675.1121.19
by Stuart Bishop
Drop crud to silence security.py warnings |
1 |
-- Copyright 2011 Canonical Ltd. This software is licensed under the
|
2 |
-- GNU Affero General Public License version 3 (see the file LICENSE).
|
|
3 |
||
4 |
SET client_min_messages = ERROR; |
|
5 |
||
6 |
-- Drop old unused functions still lurking on production.
|
|
7 |
DROP FUNCTION IF EXISTS is_blacklisted_name(text); |
|
8 |
DROP FUNCTION IF EXISTS name_blacklist_match(text); |
|
9 |
DROP FUNCTION IF EXISTS reverse(text); |
|
10 |
DROP FUNCTION IF EXISTS bug_summary_temp_journal_clean_row(bugsummary); |
|
11 |
DROP FUNCTION IF EXISTS valid_version(text); |
|
12 |
DROP FUNCTION IF EXISTS decendantrevision(integer); |
|
13 |
DROP FUNCTION IF EXISTS sleep_for_testing(float); |
|
14 |
||
15 |
INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 76, 3); |