pgsql: Define a separately configurable XLOG_BLCKSZ symbol for the page - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Define a separately configurable XLOG_BLCKSZ symbol for the page
Date
Msg-id 20060403233505.729E111F65D9@postgresql.org
Whole thread Raw
List 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)

pgsql-committers by date:

Previous
From: gsmet@pgfoundry.org (User Gsmet)
Date:
Subject: pgfouine - pgfouine: only display identified statistics if different
Next
From: jwp@pgfoundry.org (James William Pye)
Date:
Subject: python - fe: Fix relation reference for notify warning.