pgsql: Add option -N/--no-sync to pg_upgrade

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add option -N/--no-sync to pg_upgrade
Date: 2021-12-18 07:29:11
Message-ID: E1myU9X-0001tX-R2@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add option -N/--no-sync to pg_upgrade

This is an option consistent with what the other tools of src/bin/
(pg_checksums, pg_dump, pg_rewind and pg_basebackup) provide which is
useful for leveraging the I/O effort when testing things. This is not
to be used in a production environment.

All the regression tests of pg_upgrade are updated to use this new
option. This happens to cut at most a couple of seconds in environments
constrained on I/O, by avoiding a flush of data folder for the new
cluster upgraded.

Author: Michael Paquier
Reviewed-by: Peter Eisentraut
Discussion: https://postgr.es/m/YbrhzuBmBxS/DkfX(at)paquier(dot)xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3d5ffccb6df323f528cf870c26d0d0517ffe3eaa

Modified Files
--------------
doc/src/sgml/ref/pgupgrade.sgml | 16 ++++++++++++++++
src/bin/pg_upgrade/option.c | 9 ++++++++-
src/bin/pg_upgrade/pg_upgrade.c | 13 ++++++++-----
src/bin/pg_upgrade/pg_upgrade.h | 1 +
src/bin/pg_upgrade/test.sh | 2 +-
src/tools/msvc/vcregress.pl | 4 +++-
6 files changed, 37 insertions(+), 8 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2021-12-18 07:31:03 pgsql: Fix typo in TAP tests of pg_receivewal
Previous Message Tom Lane 2021-12-17 21:22:41 pgsql: Fix the public schema's permissions in a separate test script.