diff options
| author | Robert Haas | 2016-03-23 11:57:46 +0000 |
|---|---|---|
| committer | Robert Haas | 2016-03-23 11:57:46 +0000 |
| commit | 0336843939401dab8d8fbfe75e0631fea5d4c060 (patch) | |
| tree | f6dae5de5651a4a231044f56f7c860bc816dcf0a /src/include/nodes/plannodes.h | |
| parent | b283096534b9c514a92a70c98c033015b6792ba7 (diff) | |
not all jointypes done - rest in theory isserial_cost
Diffstat (limited to 'src/include/nodes/plannodes.h')
| -rw-r--r-- | src/include/nodes/plannodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 00b1d35d75..30e5a97afb 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -102,6 +102,7 @@ typedef struct Plan */ Cost startup_cost; /* cost expended before fetching any tuples */ Cost total_cost; /* total cost (assuming all tuples fetched) */ + Cost serial_cost; /* non-parallelizable portion of total cost */ /* * planner's estimate of result size of this plan step |
