Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-31 | tag 8.2.11REL8_2_11 | Marc G. Fournier | |
2008-10-30 | Translation updates | Peter Eisentraut | |
2008-10-10 | Optional arguments should be optional. | Michael Meskes | |
2008-09-19 | tag for 8.2.10REL8_2_10 | Marc G. Fournier | |
2008-08-20 | Make 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-08 | Stamp 8.2.9 (except for configure.in/configure) | Tom Lane | |
2008-06-05 | Stamp 8.2.8 (except for configure.in/configure) | Tom Lane | |
2008-06-05 | Translation updates. | Tom Lane | |
2008-06-04 | Added SQL to list of allowed variable names. | Michael Meskes | |
2008-05-05 | Add more dependencies from libpgport required by | Magnus Hagander | |
standalone msvc build of libpq. Hiroshi Saito | |||
2008-04-16 | Avoid using unnecessary pgwin32_safestat in libpq. | Andrew Dunstan | |
2008-04-10 | Fixed bug in PGTYPEStimestamp_sub that used pointers instead of the values ↵ | Michael Meskes | |
to substract. | |||
2008-03-14 | Translation updatesREL8_2_7 | Peter Eisentraut | |
2008-03-13 | Stamp version 8.2.7, except for configure.in/configure. | Tom Lane | |
2008-02-26 | Fix uninstall target. | Peter Eisentraut | |
2008-02-14 | EXECUTE can return NOT FOUND so it should be checked here too. | Michael Meskes | |
2008-02-14 | Added SQLSTATE macro closing bug #3961. | Michael Meskes | |
2008-01-14 | Fix 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-03 | Stamp release 8.2.6.REL8_2_6 | Tom Lane | |
Security: CVE-2007-4769, CVE-2007-4772, CVE-2007-6067, CVE-2007-6600, CVE-2007-6601 | |||
2007-11-30 | Add win32error.c to libpq, needed to resolve _dosmaperr. | Magnus Hagander | |
2007-11-06 | Fixed two parser bugs. | Michael Meskes | |
2007-10-09 | Don't try to free pgpassfile since it's a stack variable. | Magnus Hagander | |
Martin Pitt | |||
2007-09-13 | Translation updates | Peter Eisentraut | |
2007-09-11 | Stamp 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-08-29 | Fixed bug in Informix define handling. | Michael Meskes | |
2007-07-23 | The correct min buffer size is | Magnus Hagander | |
INITIAL_EXPBUFFER_SIZE, not PQERRORMSG_LENGTH. Backpatch only, the proper fix in HEAD is to use PQExpBuffers everywhere. | |||
2007-07-12 | Fix freenig of names in Kerberos when using MIT - need to use the | Magnus 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-05-21 | Removed errant ISODOW | Michael Meskes | |
2007-05-21 | Backported fix from HEAD that removes superfluous function Vista has a ↵ | Michael Meskes | |
problem with | |||
2007-04-27 | Removed non-existant function from extern.h | Michael Meskes | |
2007-04-27 | Inlined two functions to get rid of va_list prolems on some archs. | Michael Meskes | |
2007-04-19 | Stamp releases 8.2.4, 8.1.9, 8.0.13, 7.4.17, 7.3.19. | Bruce Momjian | |
2007-04-18 | Translation updates | Peter Eisentraut | |
2007-03-27 | Fix typo, ensable -> enable, per Steve Gieseking. | Tom Lane | |
2007-03-08 | Remove unsafe calling of WSAStartup and WSACleanup from DllMain. Move the | Magnus 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-27 | Backported bug fix for #2956. | Michael Meskes | |
2007-02-07 | Stamp releases 8.2.3, 8.1.8, 8.0.12. No release notes yet. | Bruce Momjian | |
2007-02-06 | Backported regression test changes from HEAD so the buildfarm hopefully gets ↵ | Michael Meskes | |
green again. | |||
2007-02-06 | Backported va_list handling cleanup | Michael Meskes | |
2007-02-02 | Stamp release 8.2.2.REL8_2_2 | Tom Lane | |
Security: CVE-2007-0555, CVE-2007-0556 | |||
2007-01-31 | Translation updates | Peter Eisentraut | |
2007-01-11 | Allow Borland CC to compile libpq and psql. | Bruce Momjian | |
Backpatch to 8.2.X. L Bayuk | |||
2007-01-05 | Stamp release 8.2.1. Update FAQs. | Bruce Momjian | |
2006-12-28 | Revert exports.list change pending closer study. | Tom Lane | |
2006-12-27 | Use a more backward-compatible syntax for exports.list on Linux. | Tom Lane | |
Per Thorkil Olesen. | |||
2006-12-04 | Patch of Win32 Encoding problem for server messages using | Bruce 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-02 | Translation updates | Peter Eisentraut | |
2006-11-29 | Fix Makefile problem which prevented installation on VPATH builds. | Alvaro Herrera | |
2006-11-28 | Also install ecpg_config.h | Michael Meskes | |
2006-11-24 | Translation updates | Peter Eisentraut | |