pgsql: Rework option set of oid2name

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Rework option set of oid2name
Date: 2018-08-28 12:33:59
Message-ID: E1fudC3-0000Nh-Gk@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Rework option set of oid2name

oid2name has done little effort to keep an interface consistent with
other binary utilities:
- -H was used instead of -h/-host. This option is now marked as
deprecated, still its output is accepted to be backward-compatible.
- -P has been removed from the code, and was still documented.
- All options gain long aliases, making connection options more similar
to other binaries.
- Document environment variables which could be used: PGHOST, PGPORT and
PGUSER.

A basic set of TAP tests is added on the way, and documentation is
cleaned up to be more consistent with other things.

Author: Tatsuro Yamada
Reviewed-by: Michael Paquier
Discussion: https://postgr.es/m/c7e7f25c-1747-cd0f-9335-390bc97b2db5@lab.ntt.co.jp

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1aaf532deabfa356c99abc80fc78d988ad1f1355

Modified Files
--------------
contrib/oid2name/.gitignore | 2 +
contrib/oid2name/Makefile | 6 +++
contrib/oid2name/oid2name.c | 114 +++++++++++++++++++++++-----------------
contrib/oid2name/t/001_basic.pl | 12 +++++
doc/src/sgml/oid2name.sgml | 81 ++++++++++++++++++++--------
5 files changed, 146 insertions(+), 69 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2018-08-28 12:44:24 pgsql: Rework option set of vacuumlo
Previous Message Andrew Gierth 2018-08-28 11:21:03 pgsql: Avoid quadratic slowdown in regexp match/split functions.