summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq
AgeCommit message (Collapse)Author
2008-10-31tag 8.2.11REL8_2_11Marc G. Fournier
2008-10-30Translation updatesPeter Eisentraut
2008-09-19tag for 8.2.10REL8_2_10Marc G. Fournier
2008-08-20Make libpq on windows not try to send chunks larger than 64Kb.Magnus Hagander
Per Microsoft knowledge base article Q201213, early versions of Windows fail when we do this. Later versions of Windows appear to have a higher limit than 64Kb, but do still fail on large sends, so we unconditionally limit it for all versions. Patch from Tom Lane.
2008-06-08Stamp 8.2.9 (except for configure.in/configure)Tom Lane
2008-06-05Stamp 8.2.8 (except for configure.in/configure)Tom Lane
2008-06-05Translation updates.Tom Lane
2008-05-05Add more dependencies from libpgport required byMagnus Hagander
standalone msvc build of libpq. Hiroshi Saito
2008-04-16Avoid using unnecessary pgwin32_safestat in libpq.Andrew Dunstan
2008-03-14Translation updatesREL8_2_7Peter Eisentraut
2008-03-13Stamp version 8.2.7, except for configure.in/configure.Tom Lane
2008-01-14Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode:Tom Lane
we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protocol documentation to emphasize the need for this. Per off-list report from Alexander Galler.
2008-01-03Stamp release 8.2.6.REL8_2_6Tom Lane
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601
2007-11-30Add win32error.c to libpq, needed to resolve _dosmaperr.Magnus Hagander
2007-10-09Don't try to free pgpassfile since it's a stack variable.Magnus Hagander
Martin Pitt
2007-09-13Translation updatesPeter Eisentraut
2007-09-11Stamp releases 8.2.5, 8.1.10, 8.0.14, 7.4.18, 7.3.20.Bruce Momjian
Update FAQs for 8.2.5.
2007-07-23The correct min buffer size isMagnus Hagander
INITIAL_EXPBUFFER_SIZE, not PQERRORMSG_LENGTH. Backpatch only, the proper fix in HEAD is to use PQExpBuffers everywhere.
2007-07-12Fix freenig of names in Kerberos when using MIT - need to use theMagnus Hagander
free function provided in the Kerberos library. This fixes a very hard to track down heap corruption on windows when using debug runtimes.
2007-04-19Stamp releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19.Bruce Momjian
2007-04-18Translation updatesPeter Eisentraut
2007-03-08Remove unsafe calling of WSAStartup and WSACleanup from DllMain. Move theMagnus Hagander
inline cleanup call around so it will be called in the right order, and be called on errors. Per report from Tokuharu Yuzawa.
2007-02-07Stamp releases 8.2.3, 8.1.8, 8.0.12. No release notes yet.Bruce Momjian
2007-02-02Stamp release 8.2.2.REL8_2_2Tom Lane
Security: CVE-2007-0555, CVE-2007-0556
2007-01-31Translation updatesPeter Eisentraut
2007-01-11Allow Borland CC to compile libpq and psql.Bruce Momjian
Backpatch to 8.2.X. L Bayuk
2007-01-05Stamp release 8.2.1. Update FAQs.Bruce Momjian
2006-12-28Revert exports.list change pending closer study.Tom Lane
2006-12-27Use a more backward-compatible syntax for exports.list on Linux.Tom Lane
Per Thorkil Olesen.
2006-12-04Patch of Win32 Encoding problem for server messages usingBruce Momjian
FormatMessage() (This should have been in 8.2.0, patched to 8.2.X and HEAD): I think this problem to be complex.... http://archives.postgresql.org/pgsql-hackers/2006-11/msg00042.php FormatMessage of windows cannot consider the encoding of the database. However, I should try the solution now. It is necessary to clear the problem. Multi character-code exists together in message and log. It doesn't consider the data base encoding that the user intended.... The user in multi-byte country can try this. http://inet.winpg.jp/~saito/pg_bug/MessageCheck.c That is, it is likely to become it in this manner.(Japanese) http://inet.winpg.jp/~saito/pg_bug/FormatMessage998.png Hiroshi Saito
2006-12-02Translation updatesPeter Eisentraut
2006-11-24Translation updatesPeter Eisentraut
2006-11-21Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF inTom Lane
some of the Windows-only makefiles; the correct place to assert these things is pg_config.h.win32. Per bug #2677.
2006-11-21If SSL negotiation fails and SSLMODE is 'prefer', then retry without SSL.Tom Lane
Negotiation failure is only likely to happen if one side or the other is misconfigured, eg. bad client certificate. I'm not 100% convinced that a retry is really the best thing, hence not back-patching this fix for now. Per gripe from Sergio Cinos.
2006-10-21Translations updatePeter Eisentraut
2006-10-10MSVC/BCC Win32 compiler fixes.Bruce Momjian
Hiroshi Saito
2006-10-06Message style improvementsPeter Eisentraut
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-01Make some marginal performance improvements in reportErrorPosition(),Tom Lane
which turns out to be a dominant part of the runtime in scenarios involving lots of parse-time warnings (such as Stephen Frost's example of an INSERT with a lot of backslash-containing strings). There's not a whole lot we can do about the character-at-a-time scanning, but we can at least avoid traversing the query twice.
2006-09-27Oops, forgot that libpq needs extra steps to make use of src/port/ files.Tom Lane
2006-09-27Remove separate strdup.h header file; it's redundant with port.h.Tom Lane
2006-09-22Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane
return true for exactly the characters treated as whitespace by their flex scanners. Per report from Victor Snezhko and subsequent investigation. Also fix a passel of unsafe usages of <ctype.h> functions, that is, ye olde char-vs-unsigned-char issue. I won't miss <ctype.h> when we are finally able to stop using it.
2006-09-15Fix some uses of str[n]casecmp that should be pg_str[n]casecmp,Tom Lane
per Magnus.
2006-09-09Revise OpenLDAP configuration and linking to work on more platformsTom Lane
than before. Albe Laurenz (but editorialized heavily by me, so if it doesn't work it's my fault).
2006-09-07Specify lo_write() to take a _const_ buffer, to match documentation.Bruce Momjian
2006-09-04Add missing gettext calls for some SSL errors.Peter Eisentraut
2006-08-18Add PQdescribePrepared, PQdescribePortal, and related functions to libpqTom Lane
to allow obtaining information about previously prepared statements and open cursors. Volkan Yazici
2006-08-09Suppress MSVC warnings about weak functions by usingBruce Momjian
_CRT_SECURE_NO_DEPRECATE. Hiroshi Saito
2006-08-04Add some blank lines for formatting.Bruce Momjian
2006-08-04#ifdef fix for MSVC builds of libpq.Bruce Momjian
Hiroshi Saito