From 42748087c13aaa94563f29ed120848b228c40b07 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 2 Jul 2001 20:50:46 +0000 Subject: First non-stub implementation of shared free space map. It's not super useful as yet, since its primary source of information is (full) VACUUM, which makes a concerted effort to get rid of free space before telling the map about it ... next stop is concurrent VACUUM ... --- src/include/storage/freespace.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/storage/freespace.h') diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h index 083accccab..0f11dd02f9 100644 --- a/src/include/storage/freespace.h +++ b/src/include/storage/freespace.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: freespace.h,v 1.1 2001/06/27 23:31:39 tgl Exp $ + * $Id: freespace.h,v 1.2 2001/07/02 20:50:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -45,6 +45,7 @@ extern void MultiRecordFreeSpace(RelFileNode *rel, BlockNumber *pages, Size *spaceAvail); extern void FreeSpaceMapForgetRel(RelFileNode *rel); +extern void FreeSpaceMapForgetDatabase(Oid dbid); #ifdef FREESPACE_DEBUG extern void DumpFreeSpace(void); -- cgit v1.2.1