]> granicus.if.org Git - postgresql/history - src/backend/executor/nodeAppend.c
Make some small planner API cleanups.
[postgresql] / src / backend / executor / nodeAppend.c
2019-01-02 Bruce MomjianUpdate copyright for 2019
2018-11-16 Andres FreundIntroduce notion of different types of slots (without...
2018-11-10 Andres FreundDon't require return slots for nodes without projection.
2018-10-06 Tom LaneRemove more redundant relation locking during executor...
2018-10-04 Tom LaneCentralize executor's opening/closing of Relations...
2018-08-01 Tom LaneFix run-time partition pruning for appends with multipl...
2018-07-30 Alvaro HerreraVerify range bounds to bms_add_range when necessary
2018-07-19 Heikki LinnakangasFix comment.
2018-07-19 Heikki LinnakangasExpand run-time partition pruning to work with MergeAppend
2018-06-13 Tom LaneFix up run-time partition pruning's use of relcache...
2018-06-10 Tom LaneImprove run-time partition pruning to handle any stable...
2018-04-17 Alvaro HerreraUpdate Append's idea of first_partial_plan
2018-04-09 Alvaro HerreraFix incorrect logic for choosing the next Parallel...
2018-04-07 Alvaro HerreraSupport partition pruning at execution time
2018-02-28 Robert HaasFix assertion failure when Parallel Append is run serially.
2018-02-17 Andres FreundAllow tupleslots to have a fixed tupledesc, use in...
2018-02-08 Robert HaasFix possible infinite loop with Parallel Append.
2018-01-04 Robert HaasCode review for Parallel Append.
2018-01-03 Bruce MomjianUpdate copyright for 2018
2017-12-06 Robert HaasFix Parallel Append crash.
2017-12-05 Robert HaasSupport Parallel Append plan nodes.
2017-11-08 Peter EisentrautChange TRUE/FALSE to true/false
2017-07-30 Andres FreundMove ExecProcNode from dispatch to function pointer...
2017-07-30 Andres FreundMove interrupt checking from ExecProcNode() to executor...
2017-05-17 Bruce MomjianPost-PG 10 beta1 pgindent run
2017-03-21 Robert HaasDon't scan partitioned tables.
2017-01-03 Bruce MomjianUpdate copyright via script for 2017
2016-01-02 Bruce MomjianUpdate copyright for 2016
2015-01-06 Bruce MomjianUpdate copyright for 2015
2014-05-06 Bruce Momjianpgindent run for 9.4
2014-01-07 Bruce MomjianUpdate copyright for 2014
2013-01-01 Bruce MomjianUpdate copyrights for 2013
2012-01-01 Bruce MomjianUpdate copyright notices for year 2012.
2011-01-01 Bruce MomjianStamp copyrights for year 2011.
2010-09-20 Magnus HaganderRemove cvs keywords from all files.
2010-07-12 Tom LaneMake NestLoop plan nodes pass outer-relation variables...
2010-01-02 Bruce MomjianUpdate copyright for the year 2010.
2009-10-10 Tom LaneSplit the processing of INSERT/UPDATE/DELETE operations...
2009-09-27 Tom LaneRemove no-longer-needed ExecCountSlots infrastructure.
2009-01-01 Bruce MomjianUpdate copyright for 2009.
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-07-14 Bruce MomjianRemove 576 references of include files that were not...
2006-05-23 Tom LaneRemove CXT_printf/CXT1_printf macros. If anyone had...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-02-28 Tom LaneExtend the ExecInitNode API so that plan nodes receive...
2006-02-05 Tom LaneImprove my initial, rather hacky implementation of...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-05-22 Tom LaneTeach the planner to remove SubqueryScan nodes from...
2005-04-24 Neil ConwayUpdate some comments to use SQL examples rather than...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-10-07 Tom LaneFix problems with SQL functions returning rowtypes...
2004-09-24 Neil ConwayExecProcAppend() wasn't called ExecAppend() because...
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-05-30 Neil ConwayUse the new List API function names throughout the...
2004-05-26 Neil ConwayReimplement the linked list data structure used through...
2004-01-22 Tom LaneFix oversight in optimization that avoids an unnecessar...
2003-11-29 PostgreSQL Daemon$Header: -> $PostgreSQL Changes ...
2003-08-04 Bruce MomjianUpdate copyrights to 2003.
2003-08-04 Bruce Momjianpgindent run.
2003-02-09 Tom LaneMake further use of new bitmapset code: executor's...
2002-12-05 Tom LanePhase 1 of read-only-plans project: cause executor...
2002-11-13 Bruce MomjianAdd new palloc0 call as merge of palloc and MemSet(0).
2002-11-11 Bruce MomjianBack out use of palloc0 in place if palloc/MemSet....
2002-11-10 Bruce MomjianMerge palloc()/MemSet(0) calls into a single palloc0...
2002-11-01 Tom LaneReduce a couple of debugging messages from LOG to DEBUG...
2002-09-02 Tom LaneCode review for HeapTupleHeader changes. Add version...
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-03-02 Bruce MomjianCommit to match discussed elog() changes. Only update...
2001-10-25 Bruce Momjianpgindent run on all C files. Java run to follow. ...
2001-05-15 Tom LaneEvalPlanQual was thoroughly broken for concurrent updat...
2001-05-08 Tom LaneAppend and SubqueryScan nodes were not passing changed...
2001-03-22 Bruce MomjianRemove dashes in comments that don't need them, rewrap...
2001-01-24 Bruce MomjianChange Copyright from PostgreSQL, Inc to PostgreSQL...
2000-11-12 Tom LaneRestructure handling of inheritance queries so that...
2000-11-09 Tom LaneExecEndAppend() neglected to close indices on appended...
2000-10-05 Tom LaneReimplementation of UNION/INTERSECT/EXCEPT. INTERSECT...
2000-07-12 Tom LaneFirst stage of reclaiming memory in executor by resetti...
2000-06-17 Tom LaneFix performance problems with pg_index lookups (see...
2000-06-15 Bruce MomjianFinal #include cleanup.
2000-06-10 Tom LanenodeAppend tried to deal with multiple result relations...
2000-06-09 Bruce MomjianInheritance overhaul by Chris Bitmead <chris@bitmead...
2000-04-12 Bruce MomjianYe-old pgindent run. Same 4-space tabs.
2000-01-26 Bruce MomjianAdd:
1999-11-01 Tom LaneDon't call ExecOpenIndices if pg_class relhasindex...
1999-10-30 Tom LaneAvoid duplicate ExecTypeFromTL() call in ExecInitJunkFi...
1999-09-24 Tom LaneSeveral changes here, not very related but touching...
1999-09-18 Tom LaneMega-commit to make heap_open/heap_openr/heap_close...
1999-07-17 Tom LaneFix incorrect declaration of rtentry as 'ResTarget...
1999-07-16 Bruce MomjianFinal cleanup.
1999-07-16 Bruce MomjianUpdate #include cleanups
1999-07-15 Bruce MomjianRemove unused #includes in *.c files.
1999-07-15 Bruce MomjianClean up #include in /include directory. Add scripts...
1999-05-25 Bruce Momjianpgindent run over code.
1999-02-21 Marc G. FournierFrom: Tatsuo Ishii <t-ishii@sra.co.jp>
1999-02-13 Bruce MomjianChange my-function-name-- to my_function_name, and...
1999-02-03 Bruce MomjianCleanup of source files where 'return' or 'var =' is...
1998-09-01 Bruce MomjianOK, folks, here is the pgindent output.
1998-07-15 Bruce MomjianAllow UNION/UNION ALL in subselects.
next