Commit 6736da54 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Make the blkno arguments bigints instead of int4s. A signed int4 is not

large enough for block numbers higher than 2^31. The old pre-FSM-rewrite
pg_freespacemap implementation got this right. While we're at it, remove
some unnecessary #includes.
parent f10a86ec
...@@ -3,17 +3,15 @@ ...@@ -3,17 +3,15 @@
* pg_freespacemap.c * pg_freespacemap.c
* display contents of a free space map * display contents of a free space map
* *
* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.11 2008/09/30 11:17:07 heikki Exp $ * $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.12 2008/10/02 12:20:50 heikki Exp $
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include "postgres.h"
#include "access/heapam.h" #include "access/heapam.h"
#include "access/htup.h"
#include "catalog/pg_type.h"
#include "funcapi.h" #include "funcapi.h"
#include "storage/block.h"
#include "storage/freespace.h" #include "storage/freespace.h"
#include "utils/builtins.h"
PG_MODULE_MAGIC; PG_MODULE_MAGIC;
...@@ -31,13 +29,13 @@ Datum ...@@ -31,13 +29,13 @@ Datum
pg_freespace(PG_FUNCTION_ARGS) pg_freespace(PG_FUNCTION_ARGS)
{ {
Oid relid = PG_GETARG_OID(0); Oid relid = PG_GETARG_OID(0);
uint32 blkno = PG_GETARG_UINT32(1); int64 blkno = PG_GETARG_INT64(1);
int16 freespace; int16 freespace;
Relation rel; Relation rel;
rel = relation_open(relid, AccessShareLock); rel = relation_open(relid, AccessShareLock);
if (!BlockNumberIsValid(blkno)) if (blkno < 0 || blkno > MaxBlockNumber)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("invalid block number"))); errmsg("invalid block number")));
......
/* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.sql.in,v 1.10 2008/09/30 11:17:07 heikki Exp $ */ /* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.sql.in,v 1.11 2008/10/02 12:20:50 heikki Exp $ */
-- Adjust this setting to control where the objects get created. -- Adjust this setting to control where the objects get created.
SET search_path = public; SET search_path = public;
-- Register the C function. -- Register the C function.
CREATE OR REPLACE FUNCTION pg_freespace(regclass, int4) CREATE OR REPLACE FUNCTION pg_freespace(regclass, bigint)
RETURNS int2 RETURNS int2
AS 'MODULE_PATHNAME', 'pg_freespace' AS 'MODULE_PATHNAME', 'pg_freespace'
LANGUAGE C; LANGUAGE C;
-- pg_freespace shows the recorded space avail at each block in a relation -- pg_freespace shows the recorded space avail at each block in a relation
CREATE OR REPLACE FUNCTION CREATE OR REPLACE FUNCTION
pg_freespace(rel regclass, blkno OUT int4, avail OUT int2) pg_freespace(rel regclass, blkno OUT bigint, avail OUT int2)
RETURNS SETOF RECORD RETURNS SETOF RECORD
AS $$ AS $$
SELECT blkno::int4, pg_freespace($1, blkno::int4) AS avail SELECT blkno, pg_freespace($1, blkno) AS avail
FROM generate_series(0, pg_relation_size($1) / current_setting('block_size')::bigint - 1) AS blkno; FROM generate_series(0, pg_relation_size($1) / current_setting('block_size')::bigint - 1) AS blkno;
$$ $$
LANGUAGE SQL; LANGUAGE SQL;
-- Don't want these to be available to public. -- Don't want these to be available to public.
REVOKE ALL ON FUNCTION pg_freespace(regclass, int4) FROM PUBLIC; REVOKE ALL ON FUNCTION pg_freespace(regclass, bigint) FROM PUBLIC;
REVOKE ALL ON FUNCTION pg_freespace(regclass) FROM PUBLIC; REVOKE ALL ON FUNCTION pg_freespace(regclass) FROM PUBLIC;
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgfreespacemap.sgml,v 2.4 2008/10/02 10:26:51 heikki Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/pgfreespacemap.sgml,v 2.5 2008/10/02 12:20:50 heikki Exp $ -->
<sect1 id="pgfreespacemap"> <sect1 id="pgfreespacemap">
<title>pg_freespacemap</title> <title>pg_freespacemap</title>
...@@ -41,13 +41,13 @@ ...@@ -41,13 +41,13 @@
<varlistentry> <varlistentry>
<term> <term>
<function>pg_freespace(rel regclass IN, blkno OUT int4, avail OUT int2)</function> <function>pg_freespace(rel regclass IN, blkno OUT bigint, avail OUT int2)</function>
</term> </term>
<listitem> <listitem>
<para> <para>
Displays the the amount of free space on each page of the relation, Displays the the amount of free space on each page of the relation,
according to the FSM. A set of <literal>(blkno int4, avail int2)</> according to the FSM. A set of <literal>(blkno bigint, avail int2)</>
tuples is returned, one tuple for each page in the relation. tuples is returned, one tuple for each page in the relation.
</para> </para>
</listitem> </listitem>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment