aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* 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.
* 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.
* 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
|
* 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
|
* 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.
* Use _timezone global on Cygwin instead of timezone.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
* Fix a number of places where brittle data structures or overly strongTom Lane2004-09-06
| | | | | | | | | Asserts would lead to a server core dump if an error occurred while trying to abort a failed subtransaction (thereby leading to re-execution of whatever parts of AbortSubTransaction had already run). This of course does not prevent such an error from creating an infinite loop, but at least we don't make the situation worse. Responds to an open item on the subtransactions to-do list.
* Guard against transaction control statements in SQL functions. ThisTom Lane2004-09-06
| | | | never worked, but it particularly doesn't work now.
* Fix incorrect ordering of smgr cleanup relative to buffer pin cleanupTom Lane2004-09-06
| | | | | during transaction abort. Add a regression test case to catch related mistakes in future. Alvaro Herrera and Tom Lane.
* I can't see any good reason for DropRelFileNodeBuffers to be issuingTom Lane2004-09-06
| | | | FATAL when it detects a nonzero reference count. Reduce to ERROR.
* Fixed segfault in Informix mode.Michael Meskes2004-09-06
|
* Downgrade LOG messages to DEBUG1 for normal recycling of xlog, clog,Tom Lane2004-09-06
| | | | subtrans segments. Per Greg Mullane and Chris K-L.
* Simplify IsXactIsoLevelSerializable test. A cycle saved is a cycleTom Lane2004-09-05
| | | | earned ...
* On further consideration, there's another problem here: the existingTom Lane2004-09-05
| | | | | | | elog() emulation code always calls errstart with ERROR error level. This means that a recursive error call triggered by elog would do MemoryContextReset(ErrorContext), whether or not this was actually appropriate. I'm surprised we haven't seen this in the field...
* Tweak elog.c's logic for promoting errors into more severe errors.Tom Lane2004-09-05
| | | | | | | | | Messages of less than ERROR severity should never be promoted (this fixes Gaetano Mendola's problem with a COMMERROR becoming a PANIC, and is obvious in hindsight anyway). Do all promotion in errstart not errfinish, to ensure that output decisions are made correctly; the former coding could suppress logging of promoted errors, which doesn't seem like a good idea. Eliminate some redundant code too.
* Fix shared library linking operations to work properly on all (or atTom Lane2004-09-02
| | | | | least more) combinations of HP-UX hardware, compiler, and linker. Shinji Teragaito and Tom Lane.
* Apparently HPUX runs the IA64 in big-endian mode.Tom Lane2004-09-02
|
* Yet another place where someone was being careless about the argumentsTom Lane2004-09-02
| | | | of <ctype.h> macros.
* Spelling correction, per Greg Mullane.Tom Lane2004-09-02
|
* Fix getrusage() emulation on Windows. Magnus HaganderTom Lane2004-09-02
|