summaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
AgeCommit message (Expand)Author
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
2010-01-24Fix assorted core dumps and Assert failures that could occur duringTom Lane
2010-01-17Improve the handling of SET CONSTRAINTS commands by having them searchTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-10-27Fix AfterTriggerSaveEvent to use a test and elog, not just Assert, to checkTom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-14Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane
2009-10-10Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane
2009-08-04Support hex-string input and output for type BYTEA.Tom Lane
2009-07-30Merge the Constraint and FkConstraint node types into a single type.Tom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-07-28Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid.Tom Lane
2009-06-18Fix the just-reported problem that you can't specify all four trigger eventTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-22Update comments to reflect that tgenabled is not a boolean anymore.Heikki Linnakangas
2009-01-21Make some strings translatable again that were accidentally removed inMagnus Hagander
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-13Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane
2008-11-21Fix a few more format argument warnings.Magnus Hagander
2008-11-09Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane
2008-11-02Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane
2008-10-24Reduce the memory footprint of large pending-trigger-event lists, as per myTom Lane
2008-09-01Add a bunch of new error location reports to parse-analysis error messages.Tom Lane
2008-07-18Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane
2008-07-13Clean up the use of some page-header-access macros: principally, useTom Lane
2008-05-15Add support for tracking call counts and elapsed runtime for user-definedTom Lane
2008-05-12Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-01-02Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger eventsTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-30Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane
2007-11-16Small comment spacing improvement.Bruce Momjian
2007-11-15Fix pgindent to properly handle 'else' and single-line comments on theBruce Momjian
2007-11-05Improve conversion of legacy CREATE CONSTRAINT TRIGGER representation ofTom Lane
2007-11-04Minor improvements to code for converting legacy CREATE CONSTRAINT TRIGGERTom Lane
2007-11-04Teach CREATE CONSTRAINT TRIGGER to convert old-style foreign keyTom Lane
2007-09-12Redefine the lp_flags field of item pointers as having four states, ratherTom Lane
2007-08-15Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane
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-03-19Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck
2007-02-14Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane