Revert temporary patch that made synchronous_commit default to OFF.

This commit is contained in:
Tom Lane 2007-09-10 02:01:19 +00:00
parent b7adf47eda
commit f243a1a1bd
3 changed files with 3 additions and 16 deletions

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.143 2007/09/10 01:39:19 tgl Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.144 2007/09/10 02:01:19 tgl Exp $ -->
<chapter Id="runtime-config"> <chapter Id="runtime-config">
<title>Server Configuration</title> <title>Server Configuration</title>
@ -1352,14 +1352,6 @@ SET ENABLE_SEQSCAN TO OFF;
commits. It is therefore possible, and useful, to have some commits. It is therefore possible, and useful, to have some
transactions commit synchronously and others asynchronously. transactions commit synchronously and others asynchronously.
</para> </para>
<!-- this note should go away before release!! -->
<note>
<para>
For testing purposes, <varname>synchronous_commit</varname> will
default to <literal>off</> until 8.3 release approaches.
</para>
</note>
</listitem> </listitem>
</varlistentry> </varlistentry>

View File

@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.418 2007/09/10 01:39:19 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.419 2007/09/10 02:01:19 tgl Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
@ -560,8 +560,7 @@ static struct config_bool ConfigureNamesBool[] =
NULL NULL
}, },
&XactSyncCommit, &XactSyncCommit,
/* XXX TEMPORARY FOR TESTING: sync commit should default to TRUE! */ true, NULL, NULL
false, NULL, NULL
}, },
{ {
{"zero_damaged_pages", PGC_SUSET, DEVELOPER_OPTIONS, {"zero_damaged_pages", PGC_SUSET, DEVELOPER_OPTIONS,

View File

@ -1,10 +1,6 @@
For All Releases (major, minor, beta, RC) For All Releases (major, minor, beta, RC)
================ ================
*** SPECIAL FOR 8.3: don't forget to revert patch of 2007-08-13 that
made synchronous_commit default to OFF. Affects this file, guc.c, and
config.sgml.
* Release version number changes * Release version number changes
o doc/bug.template o doc/bug.template
o bump Win32 interface version numbers o bump Win32 interface version numbers