diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-12-03 22:46:51 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-12-03 22:46:51 -0500 |
commit | 25d1ed04a2c4d176f6428b9eed57344e50f44d77 (patch) | |
tree | 83d3a39ca99fd515e1033c563d51d766ebe0c663 /contrib/pg_upgrade/server.c | |
parent | 4d88bc8f2b2c094aa157f217afde1116739f2403 (diff) | |
download | postgresql-25d1ed04a2c4d176f6428b9eed57344e50f44d77.tar.gz postgresql-25d1ed04a2c4d176f6428b9eed57344e50f44d77.zip |
Revert initdb --sync-only patch that had incorrect commit messages.
Diffstat (limited to 'contrib/pg_upgrade/server.c')
-rw-r--r-- | contrib/pg_upgrade/server.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index db622496372..49d4c8f9d73 100644 --- a/contrib/pg_upgrade/server.c +++ b/contrib/pg_upgrade/server.c @@ -209,10 +209,9 @@ start_postmaster(ClusterInfo *cluster) * a gap of 2000000000 from the current xid counter, so autovacuum will * not touch them. * - * Turn off durability requirements to improve object creation speed, and - * we only modify the new cluster, so only use it there. If there is a - * crash, the new cluster has to be recreated anyway. fsync=off is a big - * win on ext4. + * synchronous_commit=off improves object creation speed, and we only + * modify the new cluster, so only use it there. If there is a crash, + * the new cluster has to be recreated anyway. */ snprintf(cmd, sizeof(cmd), "\"%s/pg_ctl\" -w -l \"%s\" -D \"%s\" -o \"-p %d%s%s%s%s\" start", @@ -220,8 +219,7 @@ start_postmaster(ClusterInfo *cluster) (cluster->controldata.cat_ver >= BINARY_UPGRADE_SERVER_FLAG_CAT_VER) ? " -b" : " -c autovacuum=off -c autovacuum_freeze_max_age=2000000000", - (cluster == &new_cluster) ? - " -c synchronous_commit=off -c fsync=off -c full_page_writes=off" : "", + (cluster == &new_cluster) ? " -c synchronous_commit=off" : "", cluster->pgopts ? cluster->pgopts : "", socket_string); /* |