pgsql: Define a separately configurable XLOG_BLCKSZ symbol for the page

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Define a separately configurable XLOG_BLCKSZ symbol for the page
Date: 2006-04-03 23:35:05
Message-ID: 20060403233505.729E111F65D9@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Define a separately configurable XLOG_BLCKSZ symbol for the page size
used within WAL files. Historically this was the same as the data file
BLCKSZ, but there's no necessary connection, and it's possible that
performance gains might ensue from reducing XLOG_BLCKSZ. In any case
distinguishing two symbols should improve code clarity. This commit
does not actually change the page size, only provide the infrastructure
to make it possible to do so. initdb forced because of addition of a
field to pg_control.
Mark Wong, with some help from Simon Riggs and Tom Lane.

Modified Files:
--------------
pgsql/doc/src/sgml:
runtime.sgml (r1.365 -> r1.366)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runtime.sgml.diff?r1=1.365&r2=1.366)
pgsql/src/backend/access/transam:
xlog.c (r1.231 -> r1.232)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c.diff?r1=1.231&r2=1.232)
pgsql/src/bin/pg_controldata:
pg_controldata.c (r1.27 -> r1.28)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_controldata/pg_controldata.c.diff?r1=1.27&r2=1.28)
pgsql/src/bin/pg_resetxlog:
pg_resetxlog.c (r1.40 -> r1.41)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_resetxlog/pg_resetxlog.c.diff?r1=1.40&r2=1.41)
pgsql/src/include/access:
xlog_internal.h (r1.11 -> r1.12)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/access/xlog_internal.h.diff?r1=1.11&r2=1.12)
pgsql/src/include/catalog:
pg_control.h (r1.27 -> r1.28)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_control.h.diff?r1=1.27&r2=1.28)
pgsql/src/include:
pg_config_manual.h (r1.20 -> r1.21)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/pg_config_manual.h.diff?r1=1.20&r2=1.21)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message James William Pye 2006-04-04 04:53:03 python - fe: Fix relation reference for notify warning.
Previous Message User Gsmet 2006-04-03 22:16:20 pgfouine - pgfouine: only display identified statistics if different