spgist metapage - Mailing list pgsql-hackers

From Robert Haas
Subject spgist metapage
Date
Msg-id CA+TgmobtmfNBVXqse_mm4bGaXROw8T3CJS0pPNCBKB1qsPgDpA@mail.gmail.com
Whole thread Raw
Responses Re: spgist metapage
List pgsql-hackers
A quick survey of our various index AMs reveals that:

1. btree and hash indexes have a metapage that begins with a 32-bit
magic number, followed by a 32-bit version number.
2. spgist has a metapage with a version number, but no magic number.
3. gin has a metapage with a version number that is not at the
beginning of the structure, and no magic number.
4. gist indexes have no metapage at all.

Since we haven't actually released spgist yet, I'm wondering if it
should be revised to look more like btree and hash - that is, add a
32-bit version number immediately following the magic number.  All
experience hath shown that it is often much more work to add such
things later.

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Add primary key/unique constraint using prefix columns of an index
Next
From: Peter Geoghegan
Date:
Subject: Re: Exclusion Constraints on Arrays?