summaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
Commit message (Expand)AuthorAgeFilesLines
* Completion of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-20/+19
* First phase of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-4/+4
* Fix interaction between materializing holdable cursors and firingTom Lane2005-04-111-24/+20
* Officially decouple FUNC_MAX_ARGS from INDEX_MAX_KEYS, and set theTom Lane2005-03-291-5/+2
* Convert oidvector and int2vector into variable-length arrays. ThisTom Lane2005-03-291-12/+35
* Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane2005-03-251-94/+168
* Revert changes to CREATE TRIGGER and ALTER TABLE ADD FOREIGN KEY locking,Neil Conway2005-03-241-9/+2
* Adjust CREATE TRIGGER and ALTER TABLE ... ADD FOREIGN KEY to acquireNeil Conway2005-03-231-2/+9
* Change the return value of HeapTupleSatisfiesUpdate() to be an enum,Neil Conway2005-03-201-2/+2
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* ActiveSnapshot must be set to something valid while running deferredTom Lane2004-12-061-1/+9
* There is no need for ReadBuffer() call sites to check that the returnedNeil Conway2004-11-141-4/+1
* I found a corner case in which it is possible for RI_FKey_check's callTom Lane2004-10-301-8/+34
* Disallow referential integrity actions from being deferred; only theTom Lane2004-10-211-3/+9
* Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane2004-09-101-524/+671
* Minor efficiency improvements in keeping track of trigger deferredTom Lane2004-09-081-37/+28
* Fix a couple of small errors in trigger-list management, as per recentTom Lane2004-09-071-10/+11
* Fix a number of places where brittle data structures or overly strongTom Lane2004-09-061-30/+34
* Pgindent run for 8.0.Bruce Momjian2004-08-291-52/+54
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Nested transactions. There is still much left to do, especially on theTom Lane2004-07-011-155/+422
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-261-24/+16
* Restructure smgr API as per recent proposal. smgr no longer depends onTom Lane2004-02-101-2/+2
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane2003-11-121-42/+41
* Add operator strategy and comparison-value datatype fields to ScanKey.Tom Lane2003-11-091-29/+32
* Implement isolation levels read uncommitted and repeatable read as actingPeter Eisentraut2003-11-061-2/+2
* Change some notices to warnings and vice versa according to criteriaPeter Eisentraut2003-10-021-2/+2
* Get rid of ReferentialIntegritySnapshotOverride by extending Executor APITom Lane2003-09-251-7/+1
* Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut2003-09-251-9/+9
* Another pgindent run with updated typedefs.Bruce Momjian2003-08-081-2/+2
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-112/+116
* Adjust 'permission denied' messages to be more useful and consistent.Tom Lane2003-08-011-7/+11
* A visit from the message-style police ...Tom Lane2003-07-281-6/+6
* Another round of error message editing, covering backend/commands/.Tom Lane2003-07-201-58/+100
* Some early work on error message editing. Operator-not-found andTom Lane2003-07-041-5/+2
* In an attempt to simplify my life I'm submitting this patch thatBruce Momjian2003-06-241-69/+70
* Avoid O(N^2) behavior with lots of deferred triggers by makingTom Lane2003-04-201-11/+38
* The following patch cleans up the deferred trigger mechanism. There isBruce Momjian2003-03-311-37/+10
* GetTupleForTrigger must use outer transaction's command counter for timeTom Lane2003-03-271-13/+20
* Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane2003-02-091-4/+4
* Updated deferred trigger patch.Bruce Momjian2003-01-081-6/+6
* This trivial patch implements disabled, deferred triggers, per myBruce Momjian2003-01-081-4/+31
* Tweak default memory context allocation policy so that a context is notTom Lane2002-12-151-9/+4
* Un-break triggers declared for INSERT OR DELETE OR UPDATE. This workedTom Lane2002-11-251-2/+2
* This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian2002-11-231-32/+228
* Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian2002-11-131-22/+7
* Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian2002-11-111-7/+22
* Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian2002-11-101-22/+7