summaryrefslogtreecommitdiff
path: root/src/backend/executor/execUtils.c
AgeCommit message (Expand)Author
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
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
2005-03-21Convert index-related tuple handling routines from char 'n'/' ' to boolTom Lane
2005-03-16Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-09-30Adjust index locking rules as per my proposal of earlier today. YouTom Lane
2004-09-11Renumber SnapshotNow and the other special snapshot codes so thatTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-03-17Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane
2004-01-22Fix oversight in optimization that avoids an unnecessary projection stepTom Lane
2003-12-18Ensure set-returning functions in the targetlist of a plan node will beTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-10-01Repair RI trigger visibility problems (this time for sure ;-)) per recentTom Lane
2003-09-25Get rid of ReferentialIntegritySnapshotOverride by extending Executor APITom Lane
2003-09-24Repair some REINDEX problems per recent discussions. The relcache isTom Lane
2003-08-08Another pgindent run with updated typedefs.Bruce Momjian
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-05-28Replace functional-index facility with expressional indexes. Any columnTom Lane
2003-05-05Ditch ExecGetTupType() in favor of the much simpler ExecGetResultType(),Tom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-09Make further use of new bitmapset code: executor's chgParam, extParam,Tom Lane
2003-01-23Change CREATE TABLE AS / SELECT INTO to create the new table with OIDs,Tom Lane
2003-01-12First cut at implementing IN (and NOT IN) via hashtables. There isTom Lane
2002-12-18Update EvalPlanQual() to work with new executor memory management method.Tom Lane