| Commit message (Expand) | Author | Age | Files | Lines |
| * | pgindent run for 9.0 | Bruce Momjian | 2010-02-26 | 1 | -55/+56 |
| * | Wrap calls to SearchSysCache and related functions using macros. | Robert Haas | 2010-02-14 | 1 | -4/+3 |
| * | Fix assorted core dumps and Assert failures that could occur during | Tom Lane | 2010-01-24 | 1 | -5/+12 |
| * | Improve the handling of SET CONSTRAINTS commands by having them search | Tom Lane | 2010-01-17 | 1 | -146/+199 |
| * | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 | 1 | -2/+2 |
| * | Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to be | Tom Lane | 2009-11-20 | 1 | -24/+287 |
| * | Fix AfterTriggerSaveEvent to use a test and elog, not just Assert, to check | Tom Lane | 2009-10-27 | 1 | -2/+8 |
| * | Re-implement EvalPlanQual processing to improve its performance and eliminate | Tom Lane | 2009-10-26 | 1 | -12/+20 |
| * | Support SQL-compliant triggers on columns, ie fire only if certain columns | Tom Lane | 2009-10-14 | 1 | -110/+151 |
| * | Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c. | Tom Lane | 2009-10-10 | 1 | -10/+22 |
| * | Support hex-string input and output for type BYTEA. | Tom Lane | 2009-08-04 | 1 | -1/+2 |
| * | Merge the Constraint and FkConstraint node types into a single type. | Tom Lane | 2009-07-30 | 1 | -4/+6 |
| * | Support deferrable uniqueness constraints. | Tom Lane | 2009-07-29 | 1 | -22/+42 |
| * | Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid. | Tom Lane | 2009-07-28 | 1 | -3/+14 |
| * | Fix the just-reported problem that you can't specify all four trigger event | Tom Lane | 2009-06-18 | 1 | -45/+7 |
| * | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 | 1 | -28/+30 |
| * | Support column-level privileges, as required by SQL standard. | Tom Lane | 2009-01-22 | 1 | -19/+14 |
| * | Update comments to reflect that tgenabled is not a boolean anymore. | Heikki Linnakangas | 2009-01-22 | 1 | -3/+5 |
| * | Make some strings translatable again that were accidentally removed in | Magnus Hagander | 2009-01-21 | 1 | -4/+4 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 1 | -2/+2 |
| * | Fix failure to ensure that a snapshot is available to datatype input functions | Tom Lane | 2008-12-13 | 1 | -1/+20 |
| * | Fix a few more format argument warnings. | Magnus Hagander | 2008-11-21 | 1 | -4/+4 |
| * | Replace pg_class.reltriggers with relhastriggers, which is just a boolean hint | Tom Lane | 2008-11-09 | 1 | -55/+39 |
| * | Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple, | Tom Lane | 2008-11-02 | 1 | -4/+4 |
| * | Reduce the memory footprint of large pending-trigger-event lists, as per my | Tom Lane | 2008-10-24 | 1 | -324/+513 |
| * | Add a bunch of new error location reports to parse-analysis error messages. | Tom Lane | 2008-09-01 | 1 | -3/+3 |
| * | Adjust things so that the query_string of a cached plan and the sourceText of | Tom Lane | 2008-07-18 | 1 | -2/+3 |
| * | Clean up the use of some page-header-access macros: principally, use | Tom Lane | 2008-07-13 | 1 | -5/+5 |
| * | Add support for tracking call counts and elapsed runtime for user-defined | Tom Lane | 2008-05-15 | 1 | -1/+7 |
| * | Improve snapshot manager by keeping explicit track of snapshots. | Alvaro Herrera | 2008-05-12 | 1 | -2/+9 |
| * | Restructure some header files a bit, in particular heapam.h, by removing some | Alvaro Herrera | 2008-05-12 | 1 | -1/+3 |
| * | Support statement-level ON TRUNCATE triggers. Simon Riggs | Tom Lane | 2008-03-28 | 1 | -1/+97 |
| * | Move the HTSU_Result enum definition into snapshot.h, to avoid including | Alvaro Herrera | 2008-03-26 | 1 | -1/+2 |
| * | Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files. | Alvaro Herrera | 2008-03-26 | 1 | -2/+2 |
| * | Separate snapshot management code from tuple visibility code, create a | Alvaro Herrera | 2008-03-26 | 1 | -1/+2 |
| * | Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger events | Tom Lane | 2008-01-02 | 1 | -23/+20 |
| * | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 1 | -2/+2 |
| * | Avoid incrementing the CommandCounter when CommandCounterIncrement is called | Tom Lane | 2007-11-30 | 1 | -18/+11 |
| * | Small comment spacing improvement. | Bruce Momjian | 2007-11-16 | 1 | -8/+8 |
| * | Fix pgindent to properly handle 'else' and single-line comments on the | Bruce Momjian | 2007-11-15 | 1 | -54/+55 |
| * | Improve conversion of legacy CREATE CONSTRAINT TRIGGER representation of | Tom Lane | 2007-11-05 | 1 | -56/+81 |
| * | Minor improvements to code for converting legacy CREATE CONSTRAINT TRIGGER | Tom Lane | 2007-11-04 | 1 | -35/+82 |
| * | Teach CREATE CONSTRAINT TRIGGER to convert old-style foreign key | Tom Lane | 2007-11-04 | 1 | -69/+288 |
| * | Redefine the lp_flags field of item pointers as having four states, rather | Tom Lane | 2007-09-12 | 1 | -2/+2 |
| * | Arrange to cache a ResultRelInfo in the executor's EState for relations that | Tom Lane | 2007-08-15 | 1 | -84/+39 |
| * | Repair problems occurring when multiple RI updates have to be done to the same | Tom Lane | 2007-08-15 | 1 | -21/+32 |
| * | Fix incorrect optimization of foreign-key checks. When an UPDATE on the | Tom Lane | 2007-07-17 | 1 | -3/+2 |
| * | Avoid memory leakage when a series of subtransactions invoke AFTER triggers | Tom Lane | 2007-07-01 | 1 | -1/+19 |
| * | Changes pg_trigger and extend pg_rewrite in order to allow triggers and | Jan Wieck | 2007-03-19 | 1 | -21/+98 |
| * | Fix up foreign-key mechanism so that there is a sound semantic basis for the | Tom Lane | 2007-02-14 | 1 | -72/+53 |