aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Increase MAXLISTEN to a more generous value, and add an error messageTom Lane2005-01-12
| | | | | telling when it has been exceeded. Per trouble report from Jean-GÅrard Pailloncy.
* Ensure that the test postmaster started by 'make check' listens to asTom Lane2005-01-12
| | | | | | | few 'listen_addresses' as possible --- on most systems, none at all, just the Unix socket. This avoids spurious check failures due to bogus DNS setups, and is probably a good idea from a security standpoint anyway. Per trouble report from Jean-GÅrard Pailloncy.
* interval_out failed to mention 'ago' for negative intervals in SQL andTom Lane2005-01-11
| | | | GERMAN datestyles. Ancient bug reported by Terry Lee Tucker.
* Fix tracking of dump-order dependencies for stand-alone composite types.Tom Lane2005-01-11
| | | | Per report from Robert Koepferl.
* plperl was not being quite paranoid enough about detecting 'undef' valuesTom Lane2005-01-11
| | | | returned by Perl. Per report from Nicolas Addington.
* up release to rc5REL8_0_0RC5PostgreSQL Daemon2005-01-11
|
* Clean up pg_dump's handling of ownership for indexes (includingTom Lane2005-01-11
| | | | | pkey/unique constraint indexes) and schemas. Per report from Michael Fuhr.
* Separate the functions of relcache entry flush and smgr cache entry flushTom Lane2005-01-10
| | | | | | so that we can get the size of a shared inval message back down to what it was in 7.4 (and simplify the logic too). Phase 2 of fixing the 'SMgrRelation hashtable corrupted' problem.
* Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane2005-01-10
| | | | | | is the minimum required fix. I want to look next at taking advantage of it by simplifying the message semantics in the shared inval message queue, but that part can be held over for 8.1 if it turns out too ugly.
* Fixed segfault in adjust_informix due to missing varchar type.Michael Meskes2005-01-10
|
* Translation updatesPeter Eisentraut2005-01-10
|
* Comment out check for substitution of private key file on Windows,Tom Lane2005-01-10
| | | | since st_ino can't be trusted on that platform. Per report from T.J.
* Un-break MSVC build, per Andrew Dunstan.Tom Lane2005-01-10
|
* Undo an unadvertised change in the API of pg_atoi. In all previousTom Lane2005-01-09
| | | | | | | | | releases, a nonzero 'c' argument meant that the input string could be terminated by either that character or \0. Recent refactoring broke that, causing the thing to scan for 'c' only. This went undetected because no part of the main code actually passes nonzero 'c'. However it broke tsearch2 and possibly other user-written code that assumed the old definition. Per report from Tom Hebbron.
* New translationsPeter Eisentraut2005-01-09
|
* Translation updatesPeter Eisentraut2005-01-09
|
* New translationPeter Eisentraut2005-01-09
|
* Translation updatesPeter Eisentraut2005-01-09
|
* Consistently use geteuid() not getuid(); there were a few places deviatingTom Lane2005-01-08
| | | | from our long-established standard.
* Improve comments in sample config files.Tom Lane2005-01-07
|
* upgrade tags to rc4REL8_0_0RC4PostgreSQL Daemon2005-01-07
|
* Minor mop-up for Windows home-directory stuff, per Magnus.Tom Lane2005-01-06
|
* Don't list port twice in SUBDIRS. Caught by Honda Shigehiro.Tom Lane2005-01-06
|
* Revert -Wl, change to Makefile.osf, as the allegedly more standardTom Lane2005-01-06
| | | | | syntax apparently does not work for all toolchains on that platform. Per Honda Shigehiro.
* Instead of a bare recv() to read the server's response to an SSLTom Lane2005-01-06
| | | | | | | 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.
* Adjust lookup of client-side profile files (.pgpass and so on) as perTom Lane2005-01-06
| | | | | | 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.
* Translation updatesDennis Bjorklund2005-01-06
|
* Translation updatesDennis Bjorklund2005-01-06
|
* Translation updatesDennis Bjorklund2005-01-06
|
* Translation updatesPeter Eisentraut2005-01-06
|
* Translation updatesPeter Eisentraut2005-01-06
|
* Make the various places that determine the user's "home directory"Tom Lane2005-01-06
| | | | | | | | 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.
* Keep translations in step with synopses.Tom Lane2005-01-06
|
* Clean up code in libpq that obtains user's home directory: make a singleTom Lane2005-01-04
| | | | | | 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.
* Make pg_dump --oids work when default_with_oids = off. Per report fromTom Lane2005-01-04
| | | | Michael Fuhr.
* Translation updatePeter Eisentraut2005-01-04
|
* Fix typoPeter Eisentraut2005-01-04
|
* Translation updatesPeter Eisentraut2005-01-03
|
* Repair bufmgr deadlock problem reported by Michael Wildpaner. Must takeTom Lane2005-01-03
| | | | | | | | | | | share lock on a buffer being written out before releasing BufMgrLock in the BufferAlloc code path; if we do it later we might block on someone who's re-pinned the buffer. I believe this is only an issue for BufferAlloc and not the other places that call FlushBuffer. BufferSync must continue to do it the old way since it may well be trying to write buffers that other backends have pinned; but it should not be holding any conflicting locks. FlushRelationBuffers is okay since it's got exclusive lock at the relation level.
* Update copyright script.Bruce Momjian2005-01-03
|
* Adjust a few more copyright notices to match the format expected byTom Lane2005-01-01
| | | | the src/tools/copyright script.
* Some more missed copyright notices. Many of these look like theyTom Lane2005-01-01
| | | | | should have been caught by the src/tools/copyright script ... why weren't they?
* Update copyrights that were missed.Bruce Momjian2005-01-01
|
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-31
| | | | | | | | 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 ...
* Clean up win32ver.o on Windows, per Magnus.Tom Lane2004-12-31
|
* make clean must remove zic$(X) for Windows, per Magnus.Tom Lane2004-12-31
|
* Fixed segfault in connect when specifying no database name.Michael Meskes2004-12-30
|
* Support Sun's compiler on SunOS4 (a/k/a Solaris 9). Per ayan@ayan.netTom Lane2004-12-29
|
* Refactor EXEC_BACKEND code so that postmaster child processes reattachTom Lane2004-12-29
| | | | | | | | | | to shared memory as soon as possible, ie, right after read_backend_variables. The effective difference from the original code is that this happens before instead of after read_nondefault_variables(), which loads GUC information and is apparently capable of expanding the backend's memory allocation more than you'd think it should. This should fix the failure-to-attach-to-shared-memory reports we've been seeing on Windows. Also clean up a few bits of unnecessarily grotty EXEC_BACKEND code.
* Translation updatesPeter Eisentraut2004-12-29
|