1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-24 01:29:19 +03:00

1. WAL needs in zero-ed content of newly initialized page.

2. Log record for PageRepaireFragmentation now keeps array
   of !LP_USED offnums to redo cleanup properly.
This commit is contained in:
Vadim B. Mikheev
2000-12-30 15:19:57 +00:00
parent 2783bd50da
commit 3e059b3802
5 changed files with 92 additions and 40 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: htup.h,v 1.43 2000/12/28 13:00:25 vadim Exp $
* $Id: htup.h,v 1.44 2000/12/30 15:19:56 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -131,6 +131,7 @@ typedef struct xl_heap_clean
{
RelFileNode node;
BlockNumber block;
/* UNUSED OFFSET NUMBERS FOLLOW AT THE END */
} xl_heap_clean;
#define SizeOfHeapClean (offsetof(xl_heap_clean, block) + sizeof(BlockNumber))