forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitd1b7c1f
committed
Parallel executor support.
This code provides infrastructure for a parallel leader to start upparallel workers to execute subtrees of the plan tree being executedin the master. User-supplied parameters from ParamListInfo are passeddown, but PARAM_EXEC parameters are not. Various other constructs,such as initplans, subplans, and CTEs, are also not currently shared.Nevertheless, there's enough here to support a basic implementation ofparallel query, and we can lift some of the current restrictions asneeded.Amit Kapila and Robert Haas1 parent0557dc2 commitd1b7c1f
File tree
17 files changed
+1007
-2
lines changed- src
- backend
- executor
- nodes
- optimizer/plan
- utils/adt
- include
- executor
- nodes
- utils
17 files changed
+1007
-2
lines changedLines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
16 |
| - | |
| 16 | + | |
| 17 | + | |
17 | 18 |
| |
18 | 19 |
| |
19 | 20 |
| |
|
0 commit comments
Comments
(0)