~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to contrib/pageinspect/uninstall_pageinspect.sql

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $PostgreSQL: pgsql/contrib/pageinspect/uninstall_pageinspect.sql,v 1.4 2007/11/13 04:24:28 momjian Exp $ */
 
1
/* $PostgreSQL: pgsql/contrib/pageinspect/uninstall_pageinspect.sql,v 1.5 2009/06/08 16:22:44 tgl Exp $ */
2
2
 
3
3
-- Adjust this setting to control where the objects get dropped.
4
4
SET search_path = public;
5
5
 
6
6
DROP FUNCTION get_raw_page(text, int4);
 
7
DROP FUNCTION get_raw_page(text, text, int4);
7
8
DROP FUNCTION page_header(bytea);
8
9
DROP FUNCTION heap_page_items(bytea);
9
10
DROP FUNCTION bt_metap(text);
10
11
DROP FUNCTION bt_page_stats(text, int4);
11
12
DROP FUNCTION bt_page_items(text, int4);
 
13
DROP FUNCTION fsm_page_contents(bytea);