summaryrefslogtreecommitdiff
path: root/src/backend/executor/execParallel.c
Commit message (Expand)AuthorAgeFilesLines
* Implement Incremental SortTomas Vondra2020-04-061-0/+18
* Add infrastructure to track WAL usage.Amit Kapila2020-04-041-9/+27
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Further adjust EXPLAIN's choices of table alias names.Tom Lane2019-12-111-0/+2
* Make the order of the header file includes consistent in backend modules.Amit Kapila2019-11-121-2/+2
* Fix inconsistency in comments atop ExecParallelEstimate.Amit Kapila2019-06-071-1/+1
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-5/+5
* Initial pgindent run for v12.Tom Lane2019-05-221-2/+2
* Enable parallel query with SERIALIZABLE isolation.Thomas Munro2019-03-151-1/+1
* Refactor planner's header files.Tom Lane2019-01-291-2/+0
* Fix misc typos in comments.Heikki Linnakangas2019-01-231-1/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Remove some unnecessary fields from Plan trees.Tom Lane2018-10-071-1/+0
* Fix issues around EXPLAIN with JIT.Andres Freund2018-10-031-5/+4
* Remove obsolete commentAlvaro Herrera2018-09-251-8/+1
* Collect JIT instrumentation from workers.Andres Freund2018-09-251-0/+82
* Fix failure with initplans used conditionally during EvalPlanQual rechecks.Tom Lane2018-09-151-5/+19
* Match the buffer usage tracking for leader and worker backends.Amit Kapila2018-08-031-3/+9
* Basic planner and executor integration for JIT.Andres Freund2018-03-221-0/+3
* Support parallel btree index builds.Robert Haas2018-02-021-1/+1
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Add parallel-aware hash joins.Andres Freund2017-12-211-0/+21
* When passing query strings to workers, pass the terminating \0.Robert Haas2017-12-201-3/+3
* Try again to fix accumulation of parallel worker instrumentation.Robert Haas2017-12-191-15/+11
* Fix crashes on plans with multiple Gather (Merge) nodes.Robert Haas2017-12-181-12/+14
* Revert "Fix accumulation of parallel worker instrumentation."Robert Haas2017-12-131-38/+13
* Support Parallel Append plan nodes.Robert Haas2017-12-051-0/+19
* Fix accumulation of parallel worker instrumentation.Robert Haas2017-12-051-13/+38
* Fix EXPLAIN ANALYZE of hash join when the leader doesn't participate.Andres Freund2017-12-051-10/+33
* Pass eflags down to parallel workers.Robert Haas2017-11-201-1/+3
* Provide DSM segment to ExecXXXInitializeWorker functions.Andres Freund2017-11-161-10/+17
* Pass InitPlan values to workers via Gather (Merge).Robert Haas2017-11-161-17/+202
* Track in the plan the types associated with PARAM_EXEC parameters.Robert Haas2017-11-131-1/+1
* pg_stat_statements: Widen query IDs from 32 bits to 64 bits.Robert Haas2017-10-111-1/+1
* Remove TupleDesc remapping logic from tqueue.c.Andres Freund2017-09-141-5/+2
* Reduce excessive dereferencing of function pointersPeter Eisentraut2017-09-071-1/+1
* Improve division of labor between execParallel.c and nodeGather[Merge].c.Tom Lane2017-09-011-4/+68
* Separate reinitialization of shared parallel-scan state from ExecReScan.Tom Lane2017-08-301-15/+86
* Propagate sort instrumentation from workers back to leader.Robert Haas2017-08-291-66/+89
* Push tuple limits through Gather and Gather Merge.Robert Haas2017-08-291-10/+44
* Phase 3 of pgindent updates.Tom Lane2017-06-211-6/+6
* Don't be so trusting that shm_toc_lookup() will always succeed.Tom Lane2017-06-051-8/+8
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-171-3/+3
* Avoid passing function pointers across process boundaries.Tom Lane2017-04-141-4/+3
* Avoid transferring parallel-unsafe subplans to parallel workers.Tom Lane2017-04-121-4/+21
* Add infrastructure to support EphemeralNamedRelation references.Kevin Grittner2017-03-311-1/+1
* Allow for parallel execution whenever ExecutorRun() is done only once.Robert Haas2017-03-231-1/+1
* Don't scan partitioned tables.Robert Haas2017-03-211-0/+1
* Support parallel bitmap heap scans.Robert Haas2017-03-081-0/+14
* Pass the source text for a parallel query to the workers.Robert Haas2017-02-221-1/+25