Re-pgindent a few files.

In preparation for landing index AM interface changes.
This commit is contained in:
Tom Lane 2016-01-17 19:13:18 -05:00
parent 57ce9acc04
commit 8d290c8ec6
3 changed files with 17 additions and 17 deletions

View File

@ -2381,8 +2381,8 @@ IndexBuildHeapRangeScan(Relation heapRelation,
case HEAPTUPLE_INSERT_IN_PROGRESS:
/*
* In "anyvisible" mode, this tuple is visible and we don't
* need any further checks.
* In "anyvisible" mode, this tuple is visible and we
* don't need any further checks.
*/
if (anyvisible)
{
@ -2437,8 +2437,8 @@ IndexBuildHeapRangeScan(Relation heapRelation,
/*
* As with INSERT_IN_PROGRESS case, this is unexpected
* unless it's our own deletion or a system catalog;
* but in anyvisible mode, this tuple is visible.
* unless it's our own deletion or a system catalog; but
* in anyvisible mode, this tuple is visible.
*/
if (anyvisible)
{

View File

@ -228,9 +228,9 @@ cost_seqscan(Path *path, PlannerInfo *root,
/*
* Primitive parallel cost model. Assume the leader will do half as much
* work as a regular worker, because it will also need to read the tuples
* returned by the workers when they percolate up to the gather ndoe.
* This is almost certainly not exactly the right way to model this, so
* this will probably need to be changed at some point...
* returned by the workers when they percolate up to the gather node. This
* is almost certainly not exactly the right way to model this, so this
* will probably need to be changed at some point...
*/
if (nworkers > 0)
run_cost = run_cost / (nworkers + 0.5);