File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 1- /* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.sql.in,v 1.11 2008/10/02 12:20:50 heikki Exp $ */
1+ /* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.sql.in,v 1.12 2009/06/10 22: 12:28 tgl Exp $ */
22
33-- Adjust this setting to control where the objects get created.
44SET search_path = public;
@@ -8,7 +8,7 @@ SET search_path = public;
88CREATE OR REPLACE FUNCTION pg_freespace(regclass, bigint)
99RETURNS int2
1010AS 'MODULE_PATHNAME', 'pg_freespace'
11- LANGUAGE C;
11+ LANGUAGE C STRICT ;
1212
1313-- pg_freespace shows the recorded space avail at each block in a relation
1414CREATE OR REPLACE FUNCTION
Original file line number Diff line number Diff line change 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 $ */
22
33-- Adjust this setting to control where the objects get dropped.
44SET search_path = public;
55
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);
You can’t perform that action at this time.
0 commit comments