pgsql: pg_dump's getTypes() needn't retrieve typinput or typoutput anym

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: pg_dump's getTypes() needn't retrieve typinput or typoutput anym
Date: 2016-10-12 19:11:37
Message-ID: E1buOwD-0005c0-3e@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pg_dump's getTypes() needn't retrieve typinput or typoutput anymore.

Commit 64f3524e2 removed the stanza of code that examined these values.
I failed to notice they were unnecessary because my compiler didn't
warn about the un-read variables. Noted by Peter Eisentraut.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c0a3b211bcb790a8d76022cb2b3ffe9795aaf5e9

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 16 ++++------------
1 file changed, 4 insertions(+), 12 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-10-12 22:02:28 pgsql: Revert addition of PGDLLEXPORT in PG_FUNCTION_INFO_V1 macro.
Previous Message Tom Lane 2016-10-12 18:56:29 Re: pgsql: Remove pg_dump/pg_dumpall support for dumping from pre-8.0 serve