File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1- <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.136 2007/08/04 01:26:53 tgl Exp $ -->
1+ <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.137 2007/08/13 19:27:11 tgl Exp $ -->
22
33<chapter Id="runtime-config">
44 <title>Server Configuration</title>
@@ -1352,6 +1352,14 @@ SET ENABLE_SEQSCAN TO OFF;
13521352 commits. It is therefore possible, and useful, to have some
13531353 transactions commit synchronously and others asynchronously.
13541354 </para>
1355+
1356+ <!-- this note should go away before release!! -->
1357+ <note>
1358+ <para>
1359+ For testing purposes, <varname>synchronous_commit</varname> will
1360+ default to <literal>off</> until 8.3 release approaches.
1361+ </para>
1362+ </note>
13551363 </listitem>
13561364 </varlistentry>
13571365
Original file line number Diff line number Diff line change 1010 * Written by Peter Eisentraut <peter_e@gmx.net>.
1111 *
1212 * IDENTIFICATION
13- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.411 2007/08/08 16:00:46 tgl Exp $
13+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.412 2007/08/13 19:27:11 tgl Exp $
1414 *
1515 *--------------------------------------------------------------------
1616 */
@@ -560,7 +560,8 @@ static struct config_bool ConfigureNamesBool[] =
560560 NULL
561561 },
562562 & XactSyncCommit ,
563- true, NULL , NULL
563+ /* XXX TEMPORARY FOR TESTING: sync commit should default to TRUE! */
564+ false, NULL , NULL
564565 },
565566 {
566567 {"zero_damaged_pages" , PGC_SUSET , DEVELOPER_OPTIONS ,
Original file line number Diff line number Diff line change 11For All Releases (major, minor, beta, RC)
22================
33
4+ *** SPECIAL FOR 8.3: don't forget to revert patch of 2007-08-13 that
5+ made synchronous_commit default to OFF. Affects this file, guc.c, and
6+ config.sgml.
7+
48* Release version number changes
59 o doc/bug.template
610 o bump Win32 interface version numbers
You can’t perform that action at this time.
0 commit comments