File tree 3 files changed +16
-3
lines changed 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 $ -->
2
2
3
3
<chapter Id="runtime-config">
4
4
<title>Server Configuration</title>
@@ -1352,6 +1352,14 @@ SET ENABLE_SEQSCAN TO OFF;
1352
1352
commits. It is therefore possible, and useful, to have some
1353
1353
transactions commit synchronously and others asynchronously.
1354
1354
</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>
1355
1363
</listitem>
1356
1364
</varlistentry>
1357
1365
Original file line number Diff line number Diff line change 10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* 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 $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -560,7 +560,8 @@ static struct config_bool ConfigureNamesBool[] =
560
560
NULL
561
561
},
562
562
& XactSyncCommit ,
563
- true, NULL , NULL
563
+ /* XXX TEMPORARY FOR TESTING: sync commit should default to TRUE! */
564
+ false, NULL , NULL
564
565
},
565
566
{
566
567
{"zero_damaged_pages" , PGC_SUSET , DEVELOPER_OPTIONS ,
Original file line number Diff line number Diff line change 1
1
For All Releases (major, minor, beta, RC)
2
2
================
3
3
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
+
4
8
* Release version number changes
5
9
o doc/bug.template
6
10
o bump Win32 interface version numbers
You can’t perform that action at this time.
0 commit comments