- Notifications
You must be signed in to change notification settings - Fork4.9k
Commita0d9f6e
committed
Add readfuncs.c support for plan nodes.
For parallel query, we need to be able to pass a Plan to a worker, sothat it knows what it's supposed to do. We could invent our own wayof serializing plans for that purpose, but piggybacking on theexisting node infrastructure seems like a much better idea.Initially, we'll probably only support a limited number of nodeswithin parallel workers, but this commit adds support for everythingin plannodes.h except CustomScan, because doing it all at once seemseasier than doing it piecemeal, and it makes testing this code easier,too. CustomScan is excluded because making that work requires alarger rework of that facility.Amit Kapila, reviewed and slightly revised by me.1 parent4fe6f72 commita0d9f6e
2 files changed
+1023
-5
lines changedLines changed: 5 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
16 |
| - | |
17 |
| - | |
18 |
| - | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
19 | 21 |
| |
20 | 22 |
| |
21 | 23 |
| |
|
0 commit comments
Comments
(0)