pgsql: Don't assume that PageIsEmpty() returns true on an all-zeros pag - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Don't assume that PageIsEmpty() returns true on an all-zeros pag
Date
Msg-id E1ZJkkg-0002Md-9e@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Don't assume that PageIsEmpty() returns true on an all-zeros page.

It does currently, and I don't see us changing that any time soon, but we
don't make that assumption anywhere else.

Per Tom Lane's suggestion. Backpatch to 9.2, like the previous patch that
added this assumption.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/0e98ad0915ce5a665f39707db7652c67a64b5b22

Modified Files
--------------
src/backend/access/spgist/spgvacuum.c |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: Don't assume that PageIsEmpty() returns true on an all-zeros pag
Next
From: Robert Haas
Date:
Subject: Re: pgsql: Improve LWLock scalability.