mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list
provided by Andrew.
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
* pg_freespacemap.c
|
||||
* display contents of a free space map
|
||||
*
|
||||
* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.13 2009/04/07 17:57:50 tgl Exp $
|
||||
* $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.14 2009/06/11 14:48:51 momjian Exp $
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#include "postgres.h"
|
||||
@ -27,10 +27,10 @@ PG_FUNCTION_INFO_V1(pg_freespace);
|
||||
Datum
|
||||
pg_freespace(PG_FUNCTION_ARGS)
|
||||
{
|
||||
Oid relid = PG_GETARG_OID(0);
|
||||
int64 blkno = PG_GETARG_INT64(1);
|
||||
int16 freespace;
|
||||
Relation rel;
|
||||
Oid relid = PG_GETARG_OID(0);
|
||||
int64 blkno = PG_GETARG_INT64(1);
|
||||
int16 freespace;
|
||||
Relation rel;
|
||||
|
||||
rel = relation_open(relid, AccessShareLock);
|
||||
|
||||
|
Reference in New Issue
Block a user