summaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
AgeCommit message (Expand)Author
2007-08-15Repair problems occurring when multiple RI updates have to be done to the sameTom Lane
2007-07-17Fix incorrect optimization of foreign-key checks. When an UPDATE on theTom Lane
2007-07-01Avoid memory leakage when a series of subtransactions invoke AFTER triggersTom Lane
2007-01-25Properly detoast access to bytea field pg_trigger.tgargs. Old codeBruce Momjian
2006-11-23Several changes to reduce the probability of running out of memory duringTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-03Make some sentences consistent with similar ones.Bruce Momjian
2006-09-04Disallow TRUNCATE when there are any pending after-trigger events forTom Lane
2006-08-03Fix AfterTriggerExecute() to pass tg_trigtuple and tg_newtuple as NULLsTom Lane
2006-07-31Change the relation_open protocol so that we obtain lock on a relationTom Lane
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-06-16DROP ... IF EXISTS for the following cases:Andrew Dunstan
2006-05-30Make EXPLAIN sampling smarter, to avoid excessive sampling delay.Bruce Momjian
2006-04-27Use schema search path to find the first matching contraint name for SETBruce Momjian
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane
2006-01-05Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-20Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-24Fix ExecBRDeleteTriggers so that deletion is not suppressed when deleteTom Lane
2005-08-23Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane
2005-08-20Repair problems with VACUUM destroying t_ctid chains too soon, and withTom Lane
2005-08-12Solve the problem of OID collisions by probing for duplicate OIDsTom Lane
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-05-30When enqueueing after-row triggers for updates of a table with a foreignNeil Conway
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-11Fix interaction between materializing holdable cursors and firingTom Lane
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