]> granicus.if.org Git - postgresql/history - src/include/executor/executor.h
Change do_tup_output() to take Datum/isnull arrays instead of a char * array,
[postgresql] / src / include / executor / executor.h
2009-07-22 Tom LaneChange do_tup_output() to take Datum/isnull arrays...
2009-07-18 Tom LaneFix error cleanup failure caused by 8.4 changes in...
2009-06-11 Bruce Momjian8.4 pgindent run, with new combined Linux/FreeBSD/MinGW...
2009-01-01 Bruce MomjianUpdate copyright for 2009.
2008-11-19 Tom LaneSome infrastructure changes for the upcoming auto-expla...
2008-10-31 Tom LaneSimplify ExecutorRun's API and save some trivial number...
2008-10-29 Tom LaneBe more tense about not creating tuplestores with rando...
2008-10-28 Tom LaneExtend ExecMakeFunctionResult() to support set-returnin...
2008-07-26 Tom LaneAs noted by Andrew Gierth, there's really no need any...
2008-07-18 Tom LaneProvide a function hook to let plug-ins get control...
2008-03-28 Tom LaneSupport statement-level ON TRUNCATE triggers. Simon...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-11-30 Tom LaneAvoid incrementing the CommandCounter when CommandCount...
2007-11-15 Bruce MomjianRe-run pgindent with updated list of typedefs. (Update...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-08-15 Tom LaneArrange to cache a ResultRelInfo in the executor's...
2007-06-11 Tom LaneImprove UPDATE/DELETE WHERE CURRENT OF so that they...
2007-06-11 Tom LaneSupport UPDATE/DELETE WHERE CURRENT OF cursor_name...
2007-02-27 Tom LaneGet rid of the separate EState for subplans, and just...
2007-02-22 Tom LaneTurn the rangetable used by the executor into a flat...
2007-02-20 Tom LaneRemove the Query structure from the executor's API...
2007-02-06 Tom LaneAdd support for cross-type hashing in hashed subplans...
2007-02-02 Tom LaneRepair failure to check that a table is still compatibl...
2007-01-10 Tom LaneChange the planner-to-executor API so that the planner...
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2006-12-26 Tom LaneFix failure due to accessing an already-freed tuple...
2006-12-04 Tom LaneRefactor ExecGetJunkAttribute to avoid searching for...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-08-12 Tom LaneAdd INSERT/UPDATE/DELETE RETURNING, with basic docs...
2006-08-04 Tom LaneFix domain_in() bug exhibited by Darcy Buskermolen...
2006-06-16 Tom LaneFix problems with cached tuple descriptors disappearing...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-02-28 Tom LaneExtend the ExecInitNode API so that plan nodes receive...
2006-01-12 Tom LaneRepair "Halloween problem" in EvalPlanQual: a tuple...
2005-12-03 Tom LaneTweak indexscan machinery to avoid taking an AccessShar...
2005-12-02 Tom LaneAdjust scan plan nodes to avoid getting an extra Access...
2005-11-23 Tom LaneGet rid of ExecAssignResultTypeFromOuterPlan() and...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-08-20 Tom LaneRepair problems with VACUUM destroying t_ctid chains...
2005-04-16 Tom LaneCreate a new 'MultiExecProcNode' call API for plan...
2005-03-16 Tom LaneRevise TupleTableSlot code to avoid unnecessary constru...
2005-03-14 Tom LaneAvoid O(N^2) overhead in repeated nocachegetattr calls...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-10-07 Tom LaneFix problems with SQL functions returning rowtypes...
2004-09-13 Tom LaneRedesign query-snapshot timing so that volatile functio...
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-05-10 Tom LanePromote row expressions to full-fledged citizens of...
2004-04-01 Tom LaneReplace TupleTableSlot convention for whole-row variabl...
2004-03-17 Tom LaneReplace the switching function ExecEvalExpr() with...
2004-03-02 Tom LaneJunkfilter logic to force a projection step during...
2004-01-22 Tom LaneFix oversight in optimization that avoids an unnecessar...
2004-01-14 Tom LaneFix permission-checking bug reported by Tim Burgess...
2003-12-18 Tom LaneEnsure set-returning functions in the targetlist of...
2003-11-29 PostgreSQL Daemonmake sure the $Id tags are converted to $PostgreSQL...
2003-10-01 Tom LaneRepair RI trigger visibility problems (this time for...
2003-09-25 Tom LaneGet rid of ReferentialIntegritySnapshotOverride by...
2003-08-19 Tom LaneImprove dynahash.c's API so that caller can specify...
2003-08-08 Bruce MomjianAnother pgindent run with updated typedefs.
2003-08-04 Bruce MomjianUpdate copyrights to 2003.
2003-08-04 Bruce Momjianpgindent run.
2003-07-21 Tom LaneError message editing in backend/executor.
2003-06-22 Tom LaneRevise hash join and hash aggregation code to use the...
2003-05-06 Tom LaneRestructure command destination handling so that we...
2003-05-06 Tom LaneImplement feature of new FE/BE protocol whereby RowDesc...
2003-05-05 Tom LaneDitch ExecGetTupType() in favor of the much simpler...
2003-03-11 Tom LaneImplement SQL92-compatible FIRST, LAST, ABSOLUTE n...
2003-03-10 Tom LaneRestructure parsetree representation of DECLARE CURSOR...
2003-02-09 Tom LaneMake further use of new bitmapset code: executor's...
2003-02-03 Tom LaneTweak planner and executor to avoid doing ExecProject...
2003-01-12 Tom LaneFirst cut at implementing IN (and NOT IN) via hashtable...
2003-01-10 Tom LaneCreate a new file executor/execGrouping.c to centralize...
2002-12-15 Tom LaneTweak default memory context allocation policy so that...
2002-12-15 Tom LaneRevise executor APIs so that all per-query state struct...
2002-12-14 Tom LaneClean up plantree representation of SubPlan-s --- SubLi...
2002-12-13 Tom LanePhase 3 of read-only-plans project: ExecInitExpr now...
2002-12-05 Tom LanePhase 1 of read-only-plans project: cause executor...
2002-12-01 Tom LaneFix ExecMakeTableFunctionResult() to work with generic...
2002-11-30 Tom LaneBe more realistic about plans involving Materialize...
2002-09-04 Bruce Momjianpgindent run.
2002-09-02 Tom LaneCode review for HeapTupleHeader changes. Add version...
2002-08-30 Tom LaneAdd expected tuple descriptor to ReturnSetInfo informat...
2002-08-30 Tom LanePL/pgSQL functions can return sets. Neil Conway's...
2002-08-29 Tom LaneCode review for standalone composite types, query-speci...
2002-08-02 Tom LaneALTER TABLE DROP COLUMN works. Patch by Christopher...
2002-07-20 Tom LaneCode review for SHOW output changes; fix horology expec...
2002-07-20 Bruce Momjian> 2. This patch includes the same Table Function API...
2002-07-20 Bruce Momjianoid is needed, it is added at the end of the struct...
2002-06-26 Bruce MomjianThe attached patch fixes some spelling mistakes, makes the
2002-06-25 Bruce MomjianBack out cleanup patch. Got old version and needs...
2002-06-25 Bruce MomjianThe attached patch fixes some spelling mistakes, makes the
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-05-24 Tom LaneMark index entries "killed" when they are no longer...
2002-05-12 Tom LaneFirst pass at set-returning-functions in FROM, by Joe...
2002-02-27 Tom LaneClean up BeginCommand and related routines. BeginComma...
2002-02-19 Tom LaneA bunch of changes aimed at reducing backend startup...
2001-11-05 Bruce MomjianNew pgindent run with fixes suggested by Tom. Patch...
2001-10-28 Bruce MomjianAnother pgindent run. Fixes enum indenting, and improv...
2001-10-25 Bruce Momjianpgindent run on all C files. Java run to follow. ...
2001-05-27 Tom LaneWhen using a junkfilter, the output tuple should NOT...
next