~ubuntu-branches/ubuntu/trusty/postgresql-8.4/trusty

« back to all changes in this revision

Viewing changes to contrib/pg_freespacemap/uninstall_pg_freespacemap.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/pg_freespacemap/uninstall_pg_freespacemap.sql,v 1.4 2008/09/30 11:17:07 heikki Exp $ */
 
1
/* $PostgreSQL: pgsql/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql,v 1.5 2009/06/10 22:12:28 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
 
DROP VIEW pg_freespacemap_pages;
7
 
DROP VIEW pg_freespacemap_relations;
8
 
 
9
 
DROP FUNCTION pg_freespacemap_pages();
10
 
DROP FUNCTION pg_freespacemap_relations();
 
6
DROP FUNCTION pg_freespace(regclass, bigint);
 
7
DROP FUNCTION pg_freespace(regclass);