pgsql: Reestablish alignment of pg_controldata output.

From: Joe Conway <mail(at)joeconway(dot)com>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Reestablish alignment of pg_controldata output.
Date: 2015-08-26 01:46:37
Message-ID: E1ZUPnR-0008M9-NY@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Reestablish alignment of pg_controldata output.

Until 9.4, pg_controldata output was all aligned. At some point
during 9.5 development, a new item was added, namely
"Current track_commit_timestamp setting:" which is two characters
too long to be aligned with the rest of the output. Fix this by
removing the noise word "Current" and adding the requisite number
of padding spaces. Since the six preceding items are also similar
in nature, remove "Current" and pad those as well in order to
maintain overall consistency. Backpatch to 9.5 where new offending
item was added.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/56c8ce8f6573d4943a621d09ebb6fe767f16d61e

Modified Files
--------------
src/bin/pg_controldata/pg_controldata.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Joe Conway 2015-08-26 01:46:40 pgsql: Reestablish alignment of pg_controldata output.
Previous Message Tom Lane 2015-08-25 23:13:15 pgsql: Docs: be explicit about datatype matching for lead/lag functions