pgsql: Fix possible page corruption by ALTER TABLE ..

From: rhaas(at)postgresql(dot)org (Robert Haas)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix possible page corruption by ALTER TABLE ..
Date: 2010-07-29 16:15:18
Message-ID: 20100729161518.A5B127541D5@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix possible page corruption by ALTER TABLE .. SET TABLESPACE.

If a zeroed page is present in the heap, ALTER TABLE .. SET TABLESPACE will
set the LSN and TLI while copying it, which is wrong, and heap_xlog_newpage()
will do the same thing during replay, so the corruption propagates to any
standby. Note, however, that the bug can't be demonstrated unless archiving
is enabled, since in that case we skip WAL logging altogether, and the LSN/TLI
are not set.

Back-patch to 8.0; prior releases do not have tablespaces.

Analysis and patch by Jeff Davis. Adjustments for back-branches and minor
wordsmithing by me.

Tags:
----
REL8_2_STABLE

Modified Files:
--------------
pgsql/src/backend/access/heap:
heapam.c (r1.222.2.3 -> r1.222.2.4)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/heap/heapam.c?r1=1.222.2.3&r2=1.222.2.4)
pgsql/src/backend/commands:
tablecmds.c (r1.206.2.9 -> r1.206.2.10)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/tablecmds.c?r1=1.206.2.9&r2=1.206.2.10)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2010-07-29 16:15:33 pgsql: Fix possible page corruption by ALTER TABLE ..
Previous Message Robert Haas 2010-07-29 16:15:05 pgsql: Fix possible page corruption by ALTER TABLE ..