Make GiST indexes on-disk compatible with 9.2 again.

Heikki Linnakangas <heikki.linnakangas@iki.fi>

Commit: 9ee4d06f3fdde37b063b8a0f0fa0a2113ac12303
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: 2013-01-17T14:46:16Z
Releases: 9.3.0
Make GiST indexes on-disk compatible with 9.2 again.

The patch that turned XLogRecPtr into a uint64 inadvertently changed the
on-disk format of GiST indexes, because the NSN field in the GiST page
opaque is an XLogRecPtr. That breaks pg_upgrade. Revert the format of that
field back to the two-field struct that XLogRecPtr was before. This is the
same we did to LSNs in the page header to avoid changing on-disk format.

Bump catversion, as this invalidates any existing GiST indexes built on
9.3devel.

Files