summaryrefslogtreecommitdiff
path: root/src/include/executor/executor.h
AgeCommit message (Expand)Author
2009-01-01Update copyright for 2009.Bruce Momjian
2008-11-19Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane
2008-10-31Simplify ExecutorRun's API and save some trivial number of cycles by havingTom Lane
2008-10-29Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane
2008-10-28Extend ExecMakeFunctionResult() to support set-returning functions that returnTom Lane
2008-07-26As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane
2008-07-18Provide a function hook to let plug-ins get control around ExecutorRun.Tom Lane
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom 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-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-08-15Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane
2007-06-11Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane
2007-06-11Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane
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-06Add support for cross-type hashing in hashed subplans (hashed IN/NOT IN casesTom Lane
2007-02-02Repair failure to check that a table is still compatible with a previouslyTom Lane
2007-01-10Change the planner-to-executor API so that the planner tells the executorTom 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-12-04Refactor ExecGetJunkAttribute to avoid searching for junk attributesTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-08-12Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane
2006-08-04Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EStateTom Lane
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-02-28Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom 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-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-20Repair problems with VACUUM destroying t_ctid chains too soon, and withTom Lane
2005-04-16Create a new 'MultiExecProcNode' call API for plan nodes that don'tTom Lane
2005-03-16Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane
2005-03-14Avoid O(N^2) overhead in repeated nocachegetattr calls when columns ofTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-10-07Fix problems with SQL functions returning rowtypes that have droppedTom Lane
2004-09-13Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-05-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-04-01Replace TupleTableSlot convention for whole-row variables and functionTom Lane
2004-03-17Replace the switching function ExecEvalExpr() with a macro that jumpsTom Lane
2004-03-02Junkfilter logic to force a projection step during SELECT INTO was tooTom Lane
2004-01-22Fix oversight in optimization that avoids an unnecessary projection stepTom Lane
2004-01-14Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane