]> granicus.if.org Git - postgresql/commit
Set pd_lower on internal GIN posting tree pages.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 14 Apr 2014 18:03:01 +0000 (21:03 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 14 Apr 2014 18:13:19 +0000 (21:13 +0300)
commitf1dadd34fa9fccc72800ed206b8c274073dfd039
treec77f8ff6c396ba9694060f14b4c925d71bd06f4e
parent69671ab548459814d489315bf5cd421f84e984a4
Set pd_lower on internal GIN posting tree pages.

This allows squeezing out the unused space in full-page writes. And more
importantly, it can be a useful debugging aid.

In hindsight we should've done this back when GIN was added - we wouldn't
need the 'maxoff' field in the page opaque struct if we had used pd_lower
and pd_upper like on normal pages. But as long as there can be pages in the
index that have been binary-upgraded from pre-9.4 versions, we can't rely
on that, and have to continue using 'maxoff'.

Most of the code churn comes from renaming some macros, now that they're
used on internal pages, too.

This change is completely backwards-compatible, no effect on pg_upgrade.
src/backend/access/gin/gindatapage.c
src/backend/access/gin/ginvacuum.c
src/backend/access/gin/ginxlog.c
src/include/access/gin_private.h