diff options
| author | Tom Lane | 2003-02-21 00:06:22 +0000 |
|---|---|---|
| committer | Tom Lane | 2003-02-21 00:06:22 +0000 |
| commit | 70508ba7aed76954b7e630a4952e1360c15db830 (patch) | |
| tree | 5e688d748e5a183a1248153203ff8ededfd020a8 /src/include/catalog/catversion.h | |
| parent | 4df0f1d26f62e835bb357fa7c2e3d5de5fcbf802 (diff) | |
Make btree index structure adjustments and WAL logging changes needed to
support btree compaction, as per proposal of a few days ago. btree index
pages no longer store parent links, instead they have a level indicator
(counting up from zero for leaf pages). The FixBTree recovery logic is
removed, and replaced by code that detects missing parent-level insertions
during WAL replay. Also, generate appropriate WAL entries when updating
btree metapage and when building a btree index from scratch. I believe
btree indexes are now completely WAL-legal for the first time.
initdb forced due to index and WAL changes.
Diffstat (limited to 'src/include/catalog/catversion.h')
| -rw-r--r-- | src/include/catalog/catversion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 03e452121f0..240889577ae 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: catversion.h,v 1.177 2003/02/16 02:30:39 tgl Exp $ + * $Id: catversion.h,v 1.178 2003/02/21 00:06:22 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200302151 +#define CATALOG_VERSION_NO 200302171 #endif |
