summaryrefslogtreecommitdiff
path: root/src/backend/executor/execUtils.c
AgeCommit message (Expand)Author
2010-01-02check_exclusion_constraint didn't actually work correctly for indexTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-12Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane
2009-10-08Remove very ancient tuple-counting infrastructure (IncrRetrieved() andTom Lane
2009-09-27Replace the array-style TupleTable data structure with a simple List ofTom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-07-18Fix error cleanup failure caused by 8.4 changes in plpgsql to try to avoidTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-04-02Refactor ExecProject and associated routines so that fast-path code is usedTom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-07-26As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-30Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-09-20HOT updates. When we update a tuple without changing any of its indexedTom Lane
2007-08-15Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane
2007-07-31If we're gonna use ExecRelationIsTargetRelation here, might as wellTom Lane
2007-07-27Slight refactor for ExecOpenScanRelation(): we can useNeil Conway
2007-02-27Get rid of the separate EState for subplans, and just let them share theTom Lane
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane
2007-02-06Remove typmod checking from the recent security-related patches. It turnsTom Lane
2007-02-02Repair failure to check that a table is still compatible with a previouslyTom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-26Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-08-04Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EStateTom 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-07-11Sort reference of include files, "A" - "F".Bruce Momjian
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-01-14Some minor code cleanup, falling out from the removal of rtree. SK_NEGATETom Lane
2005-12-03Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane
2005-12-02Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane
2005-11-23Get rid of ExecAssignResultTypeFromOuterPlan() and make all plan node typesTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-14Prevent ExecInsert() and ExecUpdate() from scribbling on the result tupleTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-06-20Avoid WAL-logging individual tuple insertions during CREATE TABLE ASTom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-23Remove explicit FreeExprContext calls during plan node shutdown. TheTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane