aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Fix small memory leak in psql.Neil Conway2004-09-13
|
* Translation updatePeter Eisentraut2004-09-13
|
* Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane2004-09-13
| | | | | | | | | | | | | mode see a fresh snapshot for each command in the function, rather than using the latest interactive command's snapshot. Also, suppress fresh snapshots as well as CommandCounterIncrement inside STABLE and IMMUTABLE functions, instead using the snapshot taken for the most closely nested regular query. (This behavior is only sane for read-only functions, so the patch also enforces that such functions contain only SELECT commands.) As per my proposal of 6-Sep-2004; I note that I floated essentially the same proposal on 19-Jun-2002, but that discussion tailed off without any action. Since 8.0 seems like the right place to be taking possibly nontrivial backwards compatibility hits, let's get it done now.
* Translation updatesPeter Eisentraut2004-09-13
|
* Translation updatesPeter Eisentraut2004-09-13
|
* New translationsPeter Eisentraut2004-09-13
|
* New translationPeter Eisentraut2004-09-13
|
* Translation updatesPeter Eisentraut2004-09-13
|
* Fix two typos in comments.Neil Conway2004-09-13
|
* Re-add brace removal code but comment it out so we know why we removedBruce Momjian2004-09-12
| | | | it and have it in case we need it for some special case.
* Remove code that delete braces around single statements.Bruce Momjian2004-09-12
|
* When LockAcquire fails at the stage of creating a proclock object, beTom Lane2004-09-12
| | | | | sure to clean up the already-created lock object, if it has no other references. Avoids possibly-permanent leak of shared memory.
* Renumber SnapshotNow and the other special snapshot codes so thatTom Lane2004-09-11
| | | | | | | | ((Snapshot) NULL) can no longer be confused with a valid snapshot, as per my recent suggestion. Define a macro InvalidSnapshot for 0. Use InvalidSnapshot instead of SnapshotAny as the do-nothing special case for heap_update and heap_delete crosschecks; this seems a little cleaner even though the behavior is really the same.
* Ensure that pg_largeobject references opened by lo_import() or lo_export()Tom Lane2004-09-11
| | | | | will be cleaned up at end of transaction, even when there is no other LO operation in the transaction. Per bug report from Daniel Schuchardt.
* Send thread test output to file descriptor 5 like configure does ratherBruce Momjian2004-09-11
| | | | than /dev/null, which Win32 doesn't have.
* Check for ignored thread compiler options to reduce compiler noise.Bruce Momjian2004-09-11
|
* Done:Bruce Momjian2004-09-10
| | | | | < * Have AFTER triggers execute after the appropriate SQL statement in a > * -Have AFTER triggers execute after the appropriate SQL statement in a
* Fix some problems with restoring databases owned by non-superusers,Tom Lane2004-09-10
| | | | | as per bug #1249; and remove the last vestiges of using \connect to change authorization.
* Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane2004-09-10
| | | | | | | | | | | | | rather than when returning to the idle loop. This makes no particular difference for interactively-issued queries, but it makes a big difference for queries issued within functions: trigger execution now occurs before the calling function is allowed to proceed. This responds to numerous complaints about nonintuitive behavior of foreign key checking, such as http://archives.postgresql.org/pgsql-bugs/2004-09/msg00020.php, and appears to be required by the SQL99 spec. Also take the opportunity to simplify the data structures used for the pending-trigger list, rename them for more clarity, and squeeze out a bit of space.
* Add:Bruce Momjian2004-09-10
| | | | | > * Make row-wise comparisons work per SQL spec >
* Fix #if defineBruce Momjian2004-09-10
|
* Fix palloc call from /port for Cygwin.Bruce Momjian2004-09-10
|
* Properly include port file for Cygwin.Bruce Momjian2004-09-10
|
* Minor cleanup.Bruce Momjian2004-09-10
|
* More cleanup.Bruce Momjian2004-09-10
|
* Use $PORTNAME consistently instead of $host_os, where appropriate.Bruce Momjian2004-09-10
|
* Add:Bruce Momjian2004-09-10
| | | | > * Remove Win32 rename/unlink looping if unnecessary
* Add mention loops over unlink/rename might not be needed.Bruce Momjian2004-09-10
|
* Move undef of rename/unlink so system declarations are unmodified.Bruce Momjian2004-09-10
|
* Adjust quotes for win32 build of psql.Bruce Momjian2004-09-10
|
* Fix two typos in comments.Neil Conway2004-09-10
|
* Apply patch from Steven Singer for contrib/dbmirror. Changes:Neil Conway2004-09-10
| | | | | | | -It fixes up some bugs with handling setval calls -Adds upgrade instructions from prior versions -Improved the sample config file -Fixed some things in the clean_pending script
* psql consistency fixes from Greg Sabino Mullane: have \df show schema andNeil Conway2004-09-10
| | | | | name first, make sure \di+ shows description last, and make \dl SQL look a little more standard.
* Create pg_config_paths in port/ for win32 builds of psql.Bruce Momjian2004-09-10
|
* Clean up Cygwin test.Bruce Momjian2004-09-10
|
* Move TIMEZONE_GLOBAL out into the proper place.Bruce Momjian2004-09-09
|
* We don't use java in our compiles anymore so remove the filter test fromBruce Momjian2004-09-09
| | | | pgtest.
* Added a call to gettext() to fix broken translated error messages.Dennis Bjorklund2004-09-09
|
* Translation updatesDennis Bjorklund2004-09-09
|
* Some source files was not scanned for translatable strings.Dennis Bjorklund2004-09-09
|
* Translation updatesDennis Bjorklund2004-09-09
|
* Fix Cygwin defines to be consistent.Bruce Momjian2004-09-09
|
* Make TZNAME_GLOBAL for reference to tzname global variable.Bruce Momjian2004-09-09
|
* Minor efficiency improvements in keeping track of trigger deferredTom Lane2004-09-08
| | | | | | | | status. In particular, I see no reason for deferredTriggerCheckState to make an explicit entry to note that a particular trigger has its default state --- that just clutters a list that should normally be empty or very short. I have plans to revise this module much more heavily, but this is a simple separable improvement.
* Clarify description of SET CONSTRAINTS. Point out that it is stillTom Lane2004-09-08
| | | | missing the ability to schema-qualify constraint names.
* Use _timezone global on Cygwin instead of timezone.Bruce Momjian2004-09-08
|
* Improve README with mention of new functions.Bruce Momjian2004-09-08
|
* Fix a couple of small errors in trigger-list management, as per recentTom Lane2004-09-07
| | | | discussion.
* Fix places where WaitForxxx can block, to eliminate failure to detectTom Lane2004-09-07
| | | | deadlock on Win32. Magnus Hagander
* Fix error in Windows version of CHECK_FOR_INTERRUPTS macro.Tom Lane2004-09-06
| | | | | This prevented statement_timeout from working. Magnus Hagander