| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2005-01-26 | Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the | Tom Lane | |
| APPDATA directory on Windows. Magnus Hagander | |||
| 2005-01-25 | Fixed segfault due to freeing a struct definition twice if it was a named ↵ | Michael Meskes | |
| struct used in a typedef. | |||
| 2005-01-18 | Update version stamps for 8.1 as listed in RELEASE_CHANGES. | Bruce Momjian | |
| 2005-01-17 | Translation updates | Peter Eisentraut | |
| 2005-01-14 | Translation updates | Peter Eisentraut | |
| 2005-01-14 | Change Win32 client configuration files from *.txt to *.conf. | Bruce Momjian | |
| 2005-01-13 | Translation updates | Peter Eisentraut | |
| 2005-01-12 | Add conditional inclusion of <com_err.h> to support old 'heimdal' | Tom Lane | |
| version of Kerberos. Per report from Reinhard Max. | |||
| 2005-01-11 | interval_out failed to mention 'ago' for negative intervals in SQL and | Tom Lane | |
| GERMAN datestyles. Ancient bug reported by Terry Lee Tucker. | |||
| 2005-01-10 | Fixed segfault in adjust_informix due to missing varchar type. | Michael Meskes | |
| 2005-01-10 | Comment out check for substitution of private key file on Windows, | Tom Lane | |
| since st_ino can't be trusted on that platform. Per report from T.J. | |||
| 2005-01-10 | Un-break MSVC build, per Andrew Dunstan. | Tom Lane | |
| 2005-01-09 | Translation updates | Peter Eisentraut | |
| 2005-01-08 | Consistently use geteuid() not getuid(); there were a few places deviating | Tom Lane | |
| from our long-established standard. | |||
| 2005-01-06 | Minor mop-up for Windows home-directory stuff, per Magnus. | Tom Lane | |
| 2005-01-06 | Instead of a bare recv() to read the server's response to an SSL | Tom Lane | |
| request packet, use pqReadData(). This has the same effect since conn->ssl isn't set yet and we aren't expecting more than one byte. The advantage is that we will correctly detect loss-of-connection instead of going into an infinite loop. Per report from Hannu Krosing. | |||
| 2005-01-06 | Adjust lookup of client-side profile files (.pgpass and so on) as per | Tom Lane | |
| discussion on pgsql-hackers-win32 list. Documentation still needs to be tweaked --- I'm not sure how to refer to the APPDATA folder in user documentation. | |||
| 2005-01-06 | Translation updates | Dennis Bjorklund | |
| 2005-01-06 | Translation updates | Peter Eisentraut | |
| 2005-01-06 | Make the various places that determine the user's "home directory" | Tom Lane | |
| consistent. On Unix we now always consult getpwuid(); $HOME isn't used at all. On Windows the code currently consults $USERPROFILE, or $HOME if that's not defined, but I expect this will change as soon as the win32 hackers come to a consensus. Nothing done yet about changing the file names used underneath $USERPROFILE. | |||
| 2005-01-04 | Clean up code in libpq that obtains user's home directory: make a single | Tom Lane | |
| subroutine that can hide platform dependencies. The WIN32 path is still a stub, but I await a fix from one of the win32 hackers. Also clean up unnecessary #ifdef WIN32 ugliness in a couple of places. | |||
| 2005-01-01 | Adjust a few more copyright notices to match the format expected by | Tom Lane | |
| the src/tools/copyright script. | |||
| 2005-01-01 | Some more missed copyright notices. Many of these look like they | Tom Lane | |
| should have been caught by the src/tools/copyright script ... why weren't they? | |||
| 2004-12-31 | Tag appropriate files for rc3 | PostgreSQL Daemon | |
| Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ... | |||
| 2004-12-30 | Fixed segfault in connect when specifying no database name. | Michael Meskes | |
| 2004-12-28 | Make libpq default to localhost connections on machines without Unix-domain | Tom Lane | |
| sockets, rather than failing as it formerly did. Revert the thereby-obsoleted patch to make psql supply the localhost default. | |||
| 2004-12-23 | Add missing ecpg prototype for newly added functions. | Bruce Momjian | |
| 2004-12-23 | Added PGTYPEStimestamp_add_interval written by Dave Cramer. | Michael Meskes | |
| Fixed parsing of defines to make sure they used more than once. | |||
| 2004-12-21 | Patch to make libpq.rc be a built-for-distribution file was a few | Tom Lane | |
| bricks shy of a load. | |||
| 2004-12-20 | Remove direct inclusions of <com_err.h> as well as configure test for | Tom Lane | |
| its presence. This amounts to desupporting Kerberos 5 releases 1.0.*, which is small loss, and simplifies use of our Kerberos code on platforms with Red-Hat-style include file layouts. Per gripe from John Gray and followup discussion. | |||
| 2004-12-19 | Add Win32 version stamps that increment each day for proper SYSTEM32 | Bruce Momjian | |
| DLL pginstaller installs. | |||
| 2004-12-13 | New translations | Peter Eisentraut | |
| 2004-12-12 | Translation updates | Peter Eisentraut | |
| 2004-12-11 | Translation updates | Peter Eisentraut | |
| 2004-12-11 | Translation updates | Peter Eisentraut | |
| 2004-12-11 | Translation updates | Peter Eisentraut | |
| 2004-12-06 | Fixed bug in parsing of typedef'ed array sizes. | Michael Meskes | |
| Synced parser. | |||
| 2004-12-03 | Fix compile breakage from SIGPIPE fix for threading. | Bruce Momjian | |
| 2004-12-02 | Code review for recent libpq changes. Be more careful about error | Tom Lane | |
| handling in SIGPIPE processing; avoid unnecessary pollution of application link-symbol namespace; spell 'pointer to function' in the conventional way. | |||
| 2004-12-02 | Rework libpq threaded SIGPIPE handling to avoid interference with | Bruce Momjian | |
| calling applications. This is done by blocking sigpipe in the libpq thread and using sigpending/sigwait to possibily discard any sigpipe we generated. | |||
| 2004-12-01 | Allow libpq to build on MS Visual Studio .NET 2003 on Windows XP. | Bruce Momjian | |
| 2004-11-20 | Fix up makefile dependencies for pg_config_paths.h. | Tom Lane | |
| 2004-11-20 | Make sure we produce a useful error message for the case where the | Tom Lane | |
| postgresql.crt file simply isn't there, too. | |||
| 2004-11-20 | Improve error reporting for SSL connection failures. Remove redundant | Tom Lane | |
| free operations in client_cert_cb --- openssl will also attempt to free these structures, resulting in core dumps. | |||
| 2004-11-17 | Miscellaneous Cygwin build fixes from Reini Urban. | Tom Lane | |
| 2004-11-16 | Translation update | Peter Eisentraut | |
| 2004-11-13 | Not entirely sure when this broke, but libpq's VC++ build is currently | Bruce Momjian | |
| lacking pqsignal which is now required. This was found and fixed for VC++ by Shachar Shemesh, I simply duplicated the fix for the Borland makefile (untested, as I don't have that compiler). Dave Page | |||
| 2004-11-10 | List VALUE as a keyword. | Michael Meskes | |
| 2004-11-09 | Get rid of perror(), substitute some better phrased error messages. | Peter Eisentraut | |
| malloc() doesn't set errno, so most uses were buggy anyway. | |||
| 2004-11-09 | Translation updates | Peter Eisentraut | |
