]> granicus.if.org Git - postgresql/commit
Remove the logId/logSeg fields from pg_control, because they are not needed
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 8 Dec 2006 19:50:53 +0000 (19:50 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 8 Dec 2006 19:50:53 +0000 (19:50 +0000)
commit0cb91ccba93038c57a7dda6388c9f6bcd5cc52c0
tree7b6d7b2ee9fe0e371717540d1d0354e8a54788b0
parent98cacd1a0aa8486f21b18827c556b50936222d3e
Remove the logId/logSeg fields from pg_control, because they are not needed
in normal operation, and we can avoid rewriting pg_control at every log
segment switch if we don't insist that these values be valid.  Reducing
the number of pg_control updates is a good idea for both performance and
reliability.  It does make pg_resetxlog's life a bit harder, but that seems
a good tradeoff; and anyway the change to pg_resetxlog amounts to automating
something people formerly needed to do by hand, namely look at the existing
pg_xlog files to make sure the new WAL start point was past them.

In passing, change the wording of xlog.c's "database system was interrupted"
messages: describe the pg_control timestamp as "last known up at" rather than
implying it is the exact time of service interruption.  With this change the
timestamp will generally be the time of the last checkpoint, which could be
many minutes before the failure; and we've already seen indications that
people tend to misinterpret the old wording.

initdb forced due to change in pg_control layout.  Simon Riggs and Tom Lane
doc/src/sgml/ref/pg_resetxlog.sgml
src/backend/access/transam/xlog.c
src/bin/pg_controldata/pg_controldata.c
src/bin/pg_resetxlog/pg_resetxlog.c
src/include/catalog/pg_control.h