mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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.
This commit is contained in:
@ -3,17 +3,15 @@
|
||||
* pg_freespacemap.c
|
||||
* 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 "access/heapam.h"
|
||||
#include "access/htup.h"
|
||||
#include "catalog/pg_type.h"
|
||||
#include "funcapi.h"
|
||||
#include "storage/block.h"
|
||||
#include "storage/freespace.h"
|
||||
#include "utils/builtins.h"
|
||||
|
||||
|
||||
PG_MODULE_MAGIC;
|
||||
@ -31,13 +29,13 @@ Datum
|
||||
pg_freespace(PG_FUNCTION_ARGS)
|
||||
{
|
||||
Oid relid = PG_GETARG_OID(0);
|
||||
uint32 blkno = PG_GETARG_UINT32(1);
|
||||
int64 blkno = PG_GETARG_INT64(1);
|
||||
int16 freespace;
|
||||
Relation rel;
|
||||
|
||||
rel = relation_open(relid, AccessShareLock);
|
||||
|
||||
if (!BlockNumberIsValid(blkno))
|
||||
if (blkno < 0 || blkno > MaxBlockNumber)
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||
errmsg("invalid block number")));
|
||||
|
Reference in New Issue
Block a user