summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeGatherMerge.c
Commit message (Expand)AuthorAgeFilesLines
* Refactor planner's header files.Tom Lane2019-01-291-1/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Fix slot type assumptions for nodeGather[Merge].Andres Freund2018-11-151-1/+13
* Introduce notion of different types of slots (without implementing them).Andres Freund2018-11-151-1/+9
* Don't require return slots for nodes without projection.Andres Freund2018-11-091-3/+4
* Allow btree comparison functions to return INT_MIN.Tom Lane2018-10-051-1/+4
* Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund2018-09-251-5/+4
* Post-feature-freeze pgindent run.Tom Lane2018-04-261-1/+1
* Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund2018-02-161-14/+5
* Add new function WaitForParallelWorkersToAttach.Robert Haas2018-02-021-1/+8
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Fix crashes on plans with multiple Gather (Merge) nodes.Robert Haas2017-12-181-0/+4
* Remove memory leak protection from Gather and Gather Merge nodes.Robert Haas2017-12-041-9/+1
* Avoid projecting tuples unnecessarily in Gather and Gather Merge.Robert Haas2017-11-251-10/+14
* Tweak use of ExecContextForcesOids by Gather (Merge).Robert Haas2017-11-201-1/+1
* Pass InitPlan values to workers via Gather (Merge).Robert Haas2017-11-161-1/+3
* Add parallel_leader_participation GUC.Robert Haas2017-11-151-2/+4
* Fix mistaken failure to allow parallelism in corner case.Robert Haas2017-10-271-1/+1
* Remove TupleDesc remapping logic from tqueue.c.Andres Freund2017-09-141-1/+1
* Improve division of labor between execParallel.c and nodeGather[Merge].c.Tom Lane2017-09-011-35/+15
* Avoid memory leaks when a GatherMerge node is rescanned.Tom Lane2017-08-311-54/+105
* Code review for nodeGatherMerge.c.Tom Lane2017-08-301-84/+101
* Separate reinitialization of shared parallel-scan state from ExecReScan.Tom Lane2017-08-301-14/+15
* Force rescanning of parallel-aware scan nodes below a Gather[Merge].Tom Lane2017-08-301-1/+21
* Push tuple limits through Gather and Gather Merge.Robert Haas2017-08-291-1/+3
* Fix ExecReScanGatherMerge.Tom Lane2017-08-171-0/+1
* Move ExecProcNode from dispatch to function pointer based model.Andres Freund2017-07-301-2/+5
* Move interrupt checking from ExecProcNode() to executor nodes.Andres Freund2017-07-301-0/+4
* Phase 3 of pgindent updates.Tom Lane2017-06-211-1/+1
* Phase 2 of pgindent updates.Tom Lane2017-06-211-1/+1
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-171-11/+11
* Avoid GatherMerge crash when there are no workers.Robert Haas2017-03-311-7/+4
* Faster expression evaluation and targetlist projection.Andres Freund2017-03-251-6/+2
* Remove dead code in nodeGatherMerge.c.Tom Lane2017-03-121-12/+13
* Add a Gather Merge executor node.Robert Haas2017-03-091-0/+687