summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeGather.c
Commit message (Expand)AuthorAgeFilesLines
* 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-2/+1
* Improve division of labor between execParallel.c and nodeGather[Merge].c.Tom Lane2017-09-011-42/+22
* Code review for nodeGatherMerge.c.Tom Lane2017-08-301-9/+12
* 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
* 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 2 of pgindent updates.Tom Lane2017-06-211-1/+1
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-171-1/+1
* Faster expression evaluation and targetlist projection.Andres Freund2017-03-251-6/+2
* Shut down Gather's children before shutting down Gather itself.Robert Haas2017-02-221-1/+1
* Remove no-longer-needed loop in ExecGather().Tom Lane2017-01-221-24/+15
* Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund2017-01-191-28/+4
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* Ensure gatherstate->nextreader is properly initialized.Robert Haas2016-12-051-0/+2
* Extend framework from commit 53be0b1ad to report latch waits.Robert Haas2016-10-041-1/+2
* Don't CHECK_FOR_INTERRUPTS between WaitLatch and ResetLatch.Tom Lane2016-08-011-3/+2
* Fix worst memory leaks in tqueue.c.Tom Lane2016-07-291-19/+26
* pgindent run for 9.6Robert Haas2016-06-091-13/+13
* Tweak EXPLAIN for parallel query to show workers launched.Robert Haas2016-04-151-0/+1
* Minor optimizations based on ParallelContext having nworkers_launched.Robert Haas2016-03-041-11/+7
* Fix spelling mistakes.Robert Haas2016-01-141-1/+1
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Read from the same worker repeatedly until it returns no tuple.Robert Haas2015-12-231-4/+10
* Fix obsolete comment.Robert Haas2015-11-301-1/+2
* Avoid server crash when worker registration fails at execution time.Robert Haas2015-11-201-1/+3
* Avoid aggregating worker instrumentation multiple times.Robert Haas2015-11-181-5/+1
* Add missing "static" qualifier.Tom Lane2015-11-101-1/+1
* Fix rebasing mistake in nodeGather.cRobert Haas2015-11-091-1/+1
* Modify tqueue infrastructure to support transient record types.Robert Haas2015-11-061-30/+108
* Update parallel executor support to reuse the same DSM.Robert Haas2015-10-301-14/+40
* Make Gather node projection-capable.Robert Haas2015-10-281-17/+70
* Fix typos in comments.Robert Haas2015-10-221-1/+1
* Add header comments to execParallel.c and nodeGather.c.Robert Haas2015-10-221-0/+14
* Rewrite interaction of parallel mode with parallel executor support.Robert Haas2015-10-161-56/+52
* Add missing "static" specifier.Tom Lane2015-10-031-1/+1
* Add a Gather executor node.Robert Haas2015-09-301-0/+299