File tree 2 files changed +5
-8
lines changed
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 $ */
2
2
3
3
-- Adjust this setting to control where the objects get created.
4
4
SET search_path = public;
@@ -8,7 +8,7 @@ SET search_path = public;
8
8
CREATE OR REPLACE FUNCTION pg_freespace(regclass, bigint)
9
9
RETURNS int2
10
10
AS 'MODULE_PATHNAME', 'pg_freespace'
11
- LANGUAGE C;
11
+ LANGUAGE C STRICT ;
12
12
13
13
-- pg_freespace shows the recorded space avail at each block in a relation
14
14
CREATE 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 $ */
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);
You can’t perform that action at this time.
0 commit comments