summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/plan/createplan.c
Commit message (Expand)AuthorAgeFilesLines
* Change NestPath node to contain JoinPath nodePeter Eisentraut2021-08-081-12/+12
* Change SeqScan node to contain Scan nodePeter Eisentraut2021-08-081-3/+3
* Change the name of the Result Cache node to MemoizeDavid Rowley2021-07-141-26/+23
* Allow CustomScan providers to say whether they support projections.Tom Lane2021-07-061-0/+8
* Fix mis-planning of repeated application of a projection.Tom Lane2021-05-311-0/+1
* Initial pgindent and pgperltidy run for v14.Tom Lane2021-05-121-5/+5
* Fix mishandling of resjunk columns in ON CONFLICT ... UPDATE tlists.Tom Lane2021-05-101-0/+11
* Fix planner failure in some cases of sorting by an aggregate.Tom Lane2021-04-201-109/+9
* Add Result Cache executor node (take 2)David Rowley2021-04-021-0/+87
* Revert b6002a796David Rowley2021-04-011-87/+0
* Add Result Cache executor nodeDavid Rowley2021-04-011-0/+87
* Rework planning and execution of UPDATE and DELETE.Tom Lane2021-03-311-59/+28
* Add support for asynchronous execution.Etsuro Fujita2021-03-311-0/+41
* Add TID Range Scans to support efficient scanning ranges of TIDsDavid Rowley2021-02-271-0/+98
* Remove [Merge]AppendPath.partitioned_rels.Tom Lane2021-02-011-2/+0
* Remove incidental dependencies on partitioned_rels lists.Tom Lane2021-02-011-4/+2
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Improve find_em_expr_usable_for_sorting_rel commentTomas Vondra2020-12-221-0/+3
* Error out when Gather Merge input is not sortedTomas Vondra2020-12-151-6/+8
* Allow run-time pruning on nested Append/MergeAppend nodesDavid Rowley2020-11-021-2/+0
* Include result relation info in direct modify ForeignScan nodes.Heikki Linnakangas2020-10-141-0/+4
* Create ResultRelInfos later in InitPlan, index them by RT index.Heikki Linnakangas2020-10-131-2/+0
* Add for_each_from, to simplify loops starting from non-first list cells.Tom Lane2020-09-281-1/+1
* Use MinimalTuple for tuple queues.Thomas Munro2020-07-171-3/+5
* Revert "Use CP_SMALL_TLIST for hash aggregate"Jeff Davis2020-07-121-24/+4
* pgindent run prior to branching v13.Tom Lane2020-06-071-6/+6
* Use CP_SMALL_TLIST for hash aggregateTomas Vondra2020-05-311-4/+24
* Support FETCH FIRST WITH TIESAlvaro Herrera2020-04-071-3/+42
* Implement Incremental SortTomas Vondra2020-04-061-2/+118
* Save calculated transitionSpace in Agg node.Jeff Davis2020-02-271-2/+7
* Clean up newlines following left parenthesesAlvaro Herrera2020-01-301-4/+2
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Further adjust EXPLAIN's choices of table alias names.Tom Lane2019-12-111-0/+2
* Request small targetlist for input to WindowAgg.Andrew Gierth2019-11-061-3/+6
* Rationalize use of list_concat + list_copy combinations.Tom Lane2019-08-121-2/+2
* Fix representation of hash keys in Hash/HashJoin nodes.Andres Freund2019-08-021-0/+38
* Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane2019-07-151-5/+4
* Fix many typos and inconsistenciesMichael Paquier2019-07-011-1/+1
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-121/+121
* Repair issues with faulty generation of merge-append plans.Tom Lane2019-05-091-10/+55
* Use Append rather than MergeAppend for scanning ordered partitions.Tom Lane2019-04-051-29/+97
* Generated columnsPeter Eisentraut2019-03-301-3/+5
* Suppress Append and MergeAppend plan nodes that have a single child.Tom Lane2019-03-251-4/+4
* Collations with nondeterministic comparisonPeter Eisentraut2019-03-221-7/+47
* Fix handling of targetlist SRFs when scan/join relation is known empty.Tom Lane2019-03-071-6/+5
* Simplify the planner's new representation of indexable clauses a little.Tom Lane2019-02-141-24/+6
* Refactor the representation of indexable clauses in IndexPaths.Tom Lane2019-02-091-174/+158
* Refactor planner's header files.Tom Lane2019-01-291-2/+1
* In the planner, replace an empty FROM clause with a dummy RTE.Tom Lane2019-01-281-9/+78
* Avoid sharing PARAM_EXEC slots between different levels of NestLoop.Tom Lane2019-01-111-172/+10