diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-04-06 11:34:02 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-04-06 11:34:02 -0400 |
commit | de94e2af184e25576b13cbda8cf825118835d1cd (patch) | |
tree | d230afdbb5a4d1f79778107020f4bd2992a4bc71 /src/include/nodes/relation.h | |
parent | d25379eb23383f1d2f969e65e0332b47c19aea94 (diff) | |
download | postgresql-de94e2af184e25576b13cbda8cf825118835d1cd.tar.gz postgresql-de94e2af184e25576b13cbda8cf825118835d1cd.zip |
Run pgindent on a batch of (mostly-planner-related) source files.
Getting annoyed at the amount of unrelated chatter I get from pgindent'ing
Rowley's unique-joins patch. Re-indent all the files it touches.
Diffstat (limited to 'src/include/nodes/relation.h')
-rw-r--r-- | src/include/nodes/relation.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index d39c73b8b9a..5264d3cc76d 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -126,7 +126,7 @@ typedef struct PlannerGlobal bool wholePlanParallelSafe; /* is the entire plan parallel safe? */ - bool hasForeignJoin; /* does have a pushed down foreign join */ + bool hasForeignJoin; /* does have a pushed down foreign join */ } PlannerGlobal; /* macro for fetching the Plan associated with a SubPlan node */ @@ -494,7 +494,7 @@ typedef struct RelOptInfo /* materialization information */ List *pathlist; /* Path structures */ List *ppilist; /* ParamPathInfos used in pathlist */ - List *partial_pathlist; /* partial Paths */ + List *partial_pathlist; /* partial Paths */ struct Path *cheapest_startup_path; struct Path *cheapest_total_path; struct Path *cheapest_unique_path; @@ -524,7 +524,8 @@ typedef struct RelOptInfo /* Information about foreign tables and foreign joins */ Oid serverid; /* identifies server for the table or join */ - Oid umid; /* identifies user mapping for the table or join */ + Oid umid; /* identifies user mapping for the table or + * join */ /* use "struct FdwRoutine" to avoid including fdwapi.h here */ struct FdwRoutine *fdwroutine; void *fdw_private; @@ -848,7 +849,7 @@ typedef struct Path bool parallel_aware; /* engage parallel-aware logic? */ bool parallel_safe; /* OK to use as part of parallel plan? */ - int parallel_degree; /* desired parallel degree; 0 = not parallel */ + int parallel_degree; /* desired parallel degree; 0 = not parallel */ /* estimated size/costs for path (see costsize.c for more info) */ double rows; /* estimated number of result tuples */ |