libpq: Remove deprecated connection parameters authtype and tty
authorPeter Eisentraut <[email protected]>
Tue, 9 Mar 2021 14:01:22 +0000 (15:01 +0100)
committerPeter Eisentraut <[email protected]>
Tue, 9 Mar 2021 14:01:22 +0000 (15:01 +0100)
commit14d9b37607ad30c3848ea0f2955a78436eff1268
tree69aa909f2fe8946982f924a5b416e1c052bfd94d
parent096bbf7c934a4288c9e48a6ac8e91d8753ac1ccd
libpq: Remove deprecated connection parameters authtype and tty

The authtype parameter was deprecated and made inactive in commit
d5bbe2aca55bc8, but the environment variable was left defined and thus
tested with a getenv call even though the value is of no use.  Also,
if it would exist it would be copied but never freed as the cleanup
code had been removed.

tty was deprecated in commit cb7fb3ca958ec8bd5a14e7 but most of the
infrastructure around it remained in place.

Author: Daniel Gustafsson <[email protected]>
Discussion: https://postgr.es/m/DDDF36F3-582A-4C02-8598-9B464CC42B34@yesql.se
doc/src/sgml/libpq.sgml
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/libpq-int.h
src/test/examples/testlibpq4.c