summaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
AgeCommit message (Expand)Author
2005-03-29Officially decouple FUNC_MAX_ARGS from INDEX_MAX_KEYS, and set theTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-25Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane
2005-03-24Revert changes to CREATE TRIGGER and ALTER TABLE ADD FOREIGN KEY locking,Neil Conway
2005-03-23Adjust CREATE TRIGGER and ALTER TABLE ... ADD FOREIGN KEY to acquireNeil Conway
2005-03-20Change the return value of HeapTupleSatisfiesUpdate() to be an enum,Neil Conway
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-12-06ActiveSnapshot must be set to something valid while running deferredTom Lane
2004-11-14There is no need for ReadBuffer() call sites to check that the returnedNeil Conway
2004-10-30I found a corner case in which it is possible for RI_FKey_check's callTom Lane
2004-10-21Disallow referential integrity actions from being deferred; only theTom Lane
2004-09-10Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane
2004-09-08Minor efficiency improvements in keeping track of trigger deferredTom Lane
2004-09-07Fix a couple of small errors in trigger-list management, as per recentTom Lane
2004-09-06Fix a number of places where brittle data structures or overly strongTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-07-01Nested transactions. There is still much left to do, especially on theTom Lane
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-02-10Restructure smgr API as per recent proposal. smgr no longer depends onTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-11-12Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane
2003-11-09Add operator strategy and comparison-value datatype fields to ScanKey.Tom Lane
2003-11-06Implement isolation levels read uncommitted and repeatable read as actingPeter Eisentraut
2003-10-02Change some notices to warnings and vice versa according to criteriaPeter Eisentraut
2003-09-25Get rid of ReferentialIntegritySnapshotOverride by extending Executor APITom Lane
2003-09-25Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut
2003-08-08Another pgindent run with updated typedefs.Bruce Momjian
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-08-01Adjust 'permission denied' messages to be more useful and consistent.Tom Lane
2003-07-28A visit from the message-style police ...Tom Lane
2003-07-20Another round of error message editing, covering backend/commands/.Tom Lane
2003-07-04Some early work on error message editing. Operator-not-found andTom Lane
2003-06-24In an attempt to simplify my life I'm submitting this patch thatBruce Momjian
2003-04-20Avoid O(N^2) behavior with lots of deferred triggers by makingTom Lane
2003-03-31The following patch cleans up the deferred trigger mechanism. There isBruce Momjian
2003-03-27GetTupleForTrigger must use outer transaction's command counter for timeTom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-01-08Updated deferred trigger patch.Bruce Momjian
2003-01-08This trivial patch implements disabled, deferred triggers, per myBruce Momjian
2002-12-15Tweak default memory context allocation policy so that a context is notTom Lane
2002-11-25Un-break triggers declared for INSERT OR DELETE OR UPDATE. This workedTom Lane
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-10-21Avoid using IsTransactionBlock() in DeferredTriggerSetState(); no realTom Lane
2002-10-14Arrange to copy relcache's trigdesc structure at the start of anyTom Lane
2002-10-03Hack to make it possible to load CREATE CONSTRAINT TRIGGER commands thatTom Lane