summaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
AgeCommit message (Expand)Author
2018-02-27Prevent dangling-pointer access when update trigger returns old tuple.Tom Lane
2017-09-17Fix possible dangling pointer dereference in trigger.c.Tom Lane
2016-03-23Change comment to describe correct lock level usedSimon Riggs
2015-08-23Fix typo in C comment.Kevin Grittner
2015-05-23pgindent run for 9.5Bruce Momjian
2015-05-08Minor ON CONFLICT related comments and doc fixes.Andres Freund
2015-05-08Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund
2015-05-08Represent columns requiring insert and update privileges indentently.Andres Freund
2015-04-05Reduce lock levels of some trigger DDL and add FKsSimon Riggs
2015-03-03Change many routines to return ObjectAddress rather than OIDAlvaro Herrera
2015-02-20Use FLEXIBLE_ARRAY_MEMBER in some more places.Tom Lane
2015-01-28Fix column-privilege leak in error-message pathsStephen Frost
2015-01-06Update copyright for 2015Bruce Momjian
2014-11-10Fix potential NULL-pointer dereference.Robert Haas
2014-10-24Fix off-by-one error in 2781b4bea7db357be59f9a5fd73ca1eb12ff5a79.Robert Haas
2014-10-23Perform less setup work for AFTER triggers at transaction start.Robert Haas
2014-10-07Implement SKIP LOCKED for row-level locksAlvaro Herrera
2014-05-06pgindent run for 9.4Bruce Momjian
2014-03-23Offer triggers on foreign tables.Noah Misch
2014-03-23Improve comments about AfterTriggerBeginQuery() query level usage.Noah Misch
2014-02-17Avoid repeated name lookups during table and index DDL.Robert Haas
2014-01-07Update copyright for 2014Bruce Momjian
2013-12-10Add new wal_level, logical, sufficient for logical decoding.Robert Haas
2013-11-28Refine our definition of what constitutes a system relation.Robert Haas
2013-07-02Use an MVCC snapshot, rather than SnapshotNow, for catalog scans.Robert Haas
2013-06-01Post-pgindent cleanupStephen Frost
2013-05-29pgindent run for release 9.3Bruce Momjian
2013-04-28Editorialize a bit on new ProcessUtility() API.Tom Lane
2013-03-17Extend object-access hook machinery to support post-alter events.Robert Haas
2013-03-06Code beautification for object-access hook machinery.Robert Haas
2013-01-26Allow CREATE TABLE IF EXIST so succeed if the schema is nonexistentBruce Momjian
2013-01-23Improve concurrency of foreign key lockingAlvaro Herrera
2013-01-01Update copyrights for 2013Bruce Momjian
2012-12-23Adjust many backend functions to return OID rather than void.Robert Haas
2012-11-30Add missing buffer lock acquisition in GetTupleForTrigger().Tom Lane
2012-10-26Throw error if expiring tuple is again updated or deleted.Kevin Grittner
2012-08-30Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera
2012-08-10Centralize the logic for detecting misplaced aggregates, window funcs, etc.Tom Lane
2012-07-20connoinherit may be true only for CHECK constraintsAlvaro Herrera
2012-07-20Make new event trigger facility actually do something.Robert Haas
2012-06-25Replace int2/int4 in C code with int16/int32Peter Eisentraut
2012-06-19Improve tests for whether we can skip queueing RI enforcement triggers.Tom Lane
2012-06-17Refer to the default foreign key match style as MATCH SIMPLE internally.Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-04-20Recast "ONLY" column CHECK constraints as NO INHERITAlvaro Herrera
2012-03-09Extend object access hook framework to support arguments, and DROP.Robert Haas
2012-02-23Require execute permission on the trigger function for CREATE TRIGGER.Tom Lane
2012-01-25Add pg_trigger_depth() functionAlvaro Herrera
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-19Allow CHECK constraints to be declared ONLYAlvaro Herrera