postgresql/src/interfaces/libpq
Tom Lane e60b480d39 libpq should expose GSS-related parameters even when not implemented.
We realized years ago that it's better for libpq to accept all
connection parameters syntactically, even if some are ignored or
restricted due to lack of the feature in a particular build.
However, that lesson from the SSL support was for some reason never
applied to the GSSAPI support.  This is causing various buildfarm
members to have problems with a test case added by commit 6136e94dc,
and it's just a bad idea from a user-experience standpoint anyway,
so fix it.

While at it, fix some places where parameter-related infrastructure
was added with the aid of a dartboard, or perhaps with the aid of
the anti-pattern "add new stuff at the end".  It should be safe
to rearrange the contents of struct pg_conn even in released
branches, since that's private to libpq (and we'd have to move
some fields in some builds to fix this, anyway).

Back-patch to all supported branches.

Discussion: https://postgr.es/m/11297.1576868677@sss.pgh.pa.us
2019-12-20 15:34:07 -05:00
..
po Translation updates 2019-06-17 15:30:20 +02:00
test Update copyright for 2019 2019-01-02 12:44:25 -05:00
.gitignore Remove libpq-dist.rc 2019-10-23 07:10:09 +02:00
exports.txt Remove PQsslpassword function 2019-12-07 09:20:53 -05:00
fe-auth-scram.c Remove useless "return;" lines 2019-11-28 16:48:37 -03:00
fe-auth.c Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
fe-auth.h Fix use of term "verifier" 2019-10-12 21:41:59 +02:00
fe-connect.c libpq should expose GSS-related parameters even when not implemented. 2019-12-20 15:34:07 -05:00
fe-exec.c Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
fe-gssapi-common.c libpq: ccache -> credential cache 2019-09-06 09:15:35 +02:00
fe-gssapi-common.h libpq: ccache -> credential cache 2019-09-06 09:15:35 +02:00
fe-lobj.c Use consistent style for checking return from system calls 2019-07-07 15:28:49 +02:00
fe-misc.c Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
fe-print.c Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
fe-protocol2.c Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
fe-protocol3.c Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
fe-secure-common.c Update copyright for 2019 2019-01-02 12:44:25 -05:00
fe-secure-common.h Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
fe-secure-gssapi.c Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
fe-secure-openssl.c Fix handling of OpenSSL's SSL_clear_options 2019-12-06 15:13:55 +09:00
fe-secure.c Add dummy versions of new SSL functions for non-SSL builds 2019-12-01 17:49:43 -05:00
legacy-pqsignal.c Put back pqsignal() as an exported libpq symbol. 2019-10-10 14:24:56 -04:00
libpq-events.c Update copyright for 2019 2019-01-02 12:44:25 -05:00
libpq-events.h Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
libpq-fe.h Remove PQsslpassword function 2019-12-07 09:20:53 -05:00
libpq-int.h libpq should expose GSS-related parameters even when not implemented. 2019-12-20 15:34:07 -05:00
libpq.rc.in Stamp HEAD as 13devel. 2019-07-01 12:50:55 -04:00
Makefile Split all OBJS style lines in makefiles into one-line-per-entry style. 2019-11-05 14:41:07 -08:00
nls.mk Add missing source files to nls.mk 2019-07-06 15:03:21 +02:00
pg_service.conf.sample
pqexpbuffer.c Fix typos. 2019-05-26 18:28:18 +05:30
pqexpbuffer.h Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
pthread-win32.c Update copyright for 2019 2019-01-02 12:44:25 -05:00
README
win32.c Update copyright for 2019 2019-01-02 12:44:25 -05:00
win32.h Remove support for bcc and msvc standalone libpq builds 2017-04-11 15:22:21 +02:00

src/interfaces/libpq/README

This directory contains the C version of Libpq, the POSTGRES frontend library.