]> granicus.if.org Git - postgresql/history - src/include/nodes/execnodes.h
Update copyright for 2009.
[postgresql] / src / include / nodes / execnodes.h
2009-01-01 Bruce MomjianUpdate copyright for 2009.
2008-12-31 Tom LaneAdd some basic support for window frame clauses to...
2008-12-28 Tom LaneSupport window functions a la SQL:2008.
2008-11-16 Tom LaneModify UPDATE/DELETE WHERE CURRENT OF to use the FOR...
2008-11-15 Tom LaneMake SELECT FOR UPDATE/SHARE work on inheritance trees...
2008-10-31 Tom LaneAllow SQL-language functions to return the output of...
2008-10-29 Tom LaneBe more tense about not creating tuplestores with rando...
2008-10-28 Tom LaneExtend ExecMakeFunctionResult() to support set-returnin...
2008-10-23 Tom LaneRemove useless ps_OuterTupleSlot field from PlanState...
2008-10-07 Tom LaneExtend CTE patch to support recursive UNION (ie, withou...
2008-10-04 Tom LaneImplement SQL-standard WITH clauses, including WITH...
2008-10-01 Tom LaneImprove tuplestore.c to support multiple concurrent...
2008-08-22 Tom LaneArrange to convert EXISTS subqueries that are equivalen...
2008-08-07 Tom LaneSupport hashing for duplicate-elimination in INTERSECT...
2008-07-26 Tom LaneAs noted by Andrew Gierth, there's really no need any...
2008-06-19 Alvaro HerreraImprove our #include situation by moving pointer types...
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-10-24 Tom LaneFix UPDATE/DELETE WHERE CURRENT OF to support repeated...
2007-09-20 Tom LaneHOT updates. When we update a tuple without changing...
2007-08-15 Tom LaneArrange to cache a ResultRelInfo in the executor's...
2007-06-05 Tom LaneDowngrade implicit casts to text to be assignment-only...
2007-05-21 Tom LaneTeach tuplestore.c to throw away data before the "mark...
2007-05-17 Tom LaneFix parameter recalculation for Limit nodes: during...
2007-05-04 Tom LaneTeach tuplesort.c about "top N" sorting, in which only...
2007-04-26 Tom LaneFix dynahash.c to suppress hash bucket splits while...
2007-03-27 Tom LaneFix array coercion expressions to ensure that the corre...
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-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-24 Tom LaneCode review for XML patch. Instill a bit of sanity...
2006-12-21 Peter EisentrautInitial SQL/XML support: xml data type and initial...
2006-12-04 Tom LaneRefactor ExecGetJunkAttribute to avoid searching for...
2006-09-28 Tom LaneFix IS NULL and IS NOT NULL tests on row-valued express...
2006-08-25 Tom LaneAdd the ability to create indexes 'concurrently', that...
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-08-02 Tom LaneArrange for ValuesScan to keep per-sublist expression...
2006-08-02 Joe ConwayAdd support for multi-row VALUES clauses as part of...
2006-07-27 Tom LaneAggregate functions now support multiple input argument...
2006-07-26 Bruce MomjianChange LIMIT/OFFSET to use int8
2006-07-13 Bruce MomjianAllow include files to compile own their own.
2006-06-28 Tom LaneFix hash aggregation to suppress unneeded columns from...
2006-06-28 Tom LaneAdjust TupleHashTables to use MinimalTuple format for...
2006-04-30 Tom LaneImprove the representation of FOR UPDATE/FOR SHARE...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-02-28 Tom LaneTeach nodeSort and nodeMaterial to optimize out unneces...
2005-12-28 Tom LaneImplement SQL-compliant treatment of row comparisons...
2005-12-02 Tom LaneAdjust scan plan nodes to avoid getting an extra Access...
2005-11-28 Tom LaneTweak hash join code to use an additional heuristic...
2005-11-26 Tom LaneTeach tid-scan code to make use of "ctid = ANY (array...
2005-11-26 Tom LaneChange seqscan logic so that we check visibility of...
2005-11-25 Tom LaneTeach planner and executor to handle ScalarArrayOpExpr...
2005-11-22 Bruce MomjianRe-run pgindent, fixing a problem where comment lines...
2005-11-14 Tom LanePrevent ExecInsert() and ExecUpdate() from scribbling...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-09-25 Tom LaneThe original patch to avoid building a hash join's...
2005-08-01 Tom LaneAdd NOWAIT option to SELECT FOR UPDATE/SHARE.
2005-06-26 Tom LaneAdd Oracle-compatible GREATEST and LEAST functions...
2005-06-20 Tom LaneAvoid WAL-logging individual tuple insertions during...
2005-06-15 Neil ConwayChange the implementation of hash join to attempt to...
2005-05-14 Tom LaneMinor refactoring to eliminate duplicate code and make...
2005-05-13 Tom LaneRevise nodeMergejoin in light of example provided by...
2005-05-05 Tom LaneAdjust nodeBitmapIndexscan to keep the target index...
2005-04-28 Tom LaneImplement sharable row-level locks, and use them for...
2005-04-25 Tom LaneRemove support for OR'd indexscans internal to a single...
2005-04-24 Tom LaneAdjust nodeBitmapIndexscan.c to not keep the index...
2005-04-20 Tom LaneMinor performance improvement: avoid unnecessary creati...
2005-04-19 Tom LaneCreate executor and planner-backend support for decoupl...
2005-03-25 Tom LaneImprove EXPLAIN ANALYZE to show the time spent in each...
2005-03-16 Tom LaneRevise TupleTableSlot code to avoid unnecessary constru...
2005-03-06 Tom LaneRevise hash join code so that we can increase the numbe...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-12-11 Tom LaneInstead of supposing (wrongly, in the general case...
2004-10-07 Tom LaneFix problems with SQL functions returning rowtypes...
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-06-09 Tom LaneSupport assignment to subfields of composite columns...
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 LaneReimplement CASE val WHEN compval1 THEN ... WHEN compva...
2004-03-17 Tom LaneReplace the switching function ExecEvalExpr() with...
2004-02-28 Tom LaneRemove unneeded indxqual field in IndexScanState, and...
2004-01-22 Tom LaneFix oversight in optimization that avoids an unnecessar...
2004-01-06 Tom LaneInstead of rechecking lossy index operators by putting...
2003-12-18 Tom LaneUse a shutdown callback to clear setArgsValid in a...
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-22 Tom LaneTweak processing of multiple-index-scan plans to reduce...
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-06-29 Tom LaneSupport expressions of the form 'scalar op ANY (array...
next