From c47d261c07c77d1261c048e5cc1236000188ce86 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 4 Dec 2012 08:17:45 -0500 Subject: [PATCH] In pg_upgrade testing script, turn off command echo at the end so status report is clearer. --- contrib/pg_upgrade/test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contrib/pg_upgrade/test.sh b/contrib/pg_upgrade/test.sh index 503395311e..0ccb8a5985 100644 --- a/contrib/pg_upgrade/test.sh +++ b/contrib/pg_upgrade/test.sh @@ -127,6 +127,11 @@ esac pg_dumpall -f "$temp_root"/dump2.sql || pg_dumpall2_status=$? pg_ctl -m fast stop + +# no need to echo commands anymore +set +x +echo + if [ -n "$pg_dumpall2_status" ]; then echo "pg_dumpall of post-upgrade database cluster failed" exit 1 -- 2.40.0