summaryrefslogtreecommitdiff
path: root/src/interfaces
AgeCommit message (Expand)Author
2021-01-22Avoid redundantly prefixing PQerrorMessage for a connection failure.Tom Lane
2021-01-22Move SSL information callback earlier to capture more informationMichael Paquier
2021-01-21Improve new wording of libpq's connection failure messages.Tom Lane
2021-01-11Try next host after a "cannot connect now" failure.Tom Lane
2021-01-11Uniformly identify the target host in libpq connection failure reports.Tom Lane
2021-01-11Allow pg_regress.c wrappers to postprocess test result files.Tom Lane
2021-01-11In libpq, always append new error messages to conn->errorMessage.Tom Lane
2021-01-04Re-implement pl/pgsql's expression and assignment parsing.Tom Lane
2021-01-04Add the ability for the core grammar to have more than one parse target.Tom Lane
2021-01-02Update copyright for 2021Bruce Momjian
2020-12-30Use setenv() in preference to putenv().Tom Lane
2020-12-28Fix bugs in libpq's GSSAPI encryption support.Tom Lane
2020-12-28Expose the default for channel_binding in PQconndefaults().Tom Lane
2020-12-24revert removal of hex_decode() from ecpg from commit c3826f831eBruce Momjian
2020-12-24move hex_decode() to /common so it can be called from frontendBruce Momjian
2020-12-02Move SHA2 routines to a new generic API layer for crypto hashesMichael Paquier
2020-11-25Add support for abstract Unix-domain socketsPeter Eisentraut
2020-11-11Fix some stray whitespace in parser filesPeter Eisentraut
2020-11-07Avoid re-using output variables in new ecpg test case.Tom Lane
2020-11-07Fix ecpg's mishandling of B'...' and X'...' literals.Tom Lane
2020-11-02Fix some grammar and typos in comments and docsMichael Paquier
2020-10-29Don't use custom OID symbols in pg_type.dat, either.Tom Lane
2020-10-24Fix ancient bug in ecpg's pthread_once() emulation for Windows.Tom Lane
2020-10-22Add documentation and tests for quote marks in ECPG literal queries.Tom Lane
2020-10-22Avoid premature de-doubling of quote marks in ECPG strings.Tom Lane
2020-10-21Fix -Wcast-function-type warnings on Windows/MinGWPeter Eisentraut
2020-10-18Update the Winsock API version requested by libpq.Tom Lane
2020-10-17In libpq for Windows, call WSAStartup once and WSACleanup not at all.Tom Lane
2020-10-15Replace calls of htonl()/ntohl() with pg_bswap.h for GSSAPI encryptionMichael Paquier
2020-10-14Use https for gnu.org linksPeter Eisentraut
2020-10-10Recognize network-failure errnos as indicating hard connection loss.Tom Lane
2020-09-22Remove arbitrary line length limit for libpq service files.Tom Lane
2020-09-22Rethink API for pg_get_line.c, one more time.Tom Lane
2020-09-18Allow most keywords to be used as column labels without requiring AS.Tom Lane
2020-09-10Add libpq's openssl dependencies to pkg-config filePeter Eisentraut
2020-09-06Remove arbitrary line length limits in pg_regress (plain and ECPG).Tom Lane
2020-09-01Teach libpq to handle arbitrary-length lines in .pgpass files.Tom Lane
2020-08-10Replace remaining StrNCpy() by strlcpy()Peter Eisentraut
2020-08-04Increase hard-wired timeout values in ecpg regression tests.Tom Lane
2020-08-03Fix behavior of ecpg's "EXEC SQL elif name".Tom Lane
2020-07-27Fix handling of structure for bytea data type in ECPGMichael Paquier
2020-07-13Fix bugs in libpq's management of GSS encryption state.Tom Lane
2020-06-30Fix ecpg crash with bytea and cursor variables.Michael Meskes
2020-06-29Mop up some no-longer-necessary hacks around printf %.*s format.Tom Lane
2020-06-27Fix list of SSL error codes for older OpenSSL versions.Tom Lane
2020-06-27Add hints about protocol-version-related SSL connection failures.Tom Lane
2020-06-27Change libpq's default ssl_min_protocol_version to TLSv1.2.Tom Lane
2020-06-15Error message refactoringPeter Eisentraut
2020-06-10Remove redundant grammar symbolsPeter Eisentraut
2020-06-07Try to read data from the socket in pqSendSome's write_failed paths.Tom Lane