diff options
author | Tom Lane | 2007-08-13 19:27:12 +0000 |
---|---|---|
committer | Tom Lane | 2007-08-13 19:27:12 +0000 |
commit | b83bd31bd953b6daa22bcbdaee5ade2a27ec7324 (patch) | |
tree | 03135682de41ad83eb9f992a8d220cf03b68c8b8 /src | |
parent | 647fd9a108581d875543fd601b09ebd05e850993 (diff) |
TEMPORARILY make synchronous_commit default to OFF, so that we can get more
thorough testing of async-commit mode from the buildfarm. This patch MUST
get reverted before 8.3 release!
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 5 | ||||
-rw-r--r-- | src/tools/RELEASE_CHANGES | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 09cd8ca4481..0f2b479bf97 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <[email protected]>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.411 2007/08/08 16:00:46 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.412 2007/08/13 19:27:11 tgl Exp $ * *-------------------------------------------------------------------- */ @@ -560,7 +560,8 @@ static struct config_bool ConfigureNamesBool[] = NULL }, &XactSyncCommit, - true, NULL, NULL + /* XXX TEMPORARY FOR TESTING: sync commit should default to TRUE! */ + false, NULL, NULL }, { {"zero_damaged_pages", PGC_SUSET, DEVELOPER_OPTIONS, diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES index b1ef4931e84..2ebd6e39080 100644 --- a/src/tools/RELEASE_CHANGES +++ b/src/tools/RELEASE_CHANGES @@ -1,6 +1,10 @@ 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 o doc/bug.template o bump Win32 interface version numbers |