Commit c47d261c authored by Bruce Momjian's avatar Bruce Momjian

In pg_upgrade testing script, turn off command echo at the end so status

report is clearer.
parent ec8d1e32
...@@ -127,6 +127,11 @@ esac ...@@ -127,6 +127,11 @@ esac
pg_dumpall -f "$temp_root"/dump2.sql || pg_dumpall2_status=$? pg_dumpall -f "$temp_root"/dump2.sql || pg_dumpall2_status=$?
pg_ctl -m fast stop pg_ctl -m fast stop
# no need to echo commands anymore
set +x
echo
if [ -n "$pg_dumpall2_status" ]; then if [ -n "$pg_dumpall2_status" ]; then
echo "pg_dumpall of post-upgrade database cluster failed" echo "pg_dumpall of post-upgrade database cluster failed"
exit 1 exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment