From 2aa0476dc38f7e510b8cde627e83b4c76fa05d61 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 24 May 2015 15:04:10 -0400 Subject: Manual cleanup of pgindent results. Fix some places where pgindent did silly stuff, often because project style wasn't followed to begin with. (I've not touched the atomics headers, though.) --- src/backend/access/tablesample/tablesample.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/backend/access/tablesample/tablesample.c') diff --git a/src/backend/access/tablesample/tablesample.c b/src/backend/access/tablesample/tablesample.c index 3398d02f854..44a24340f6b 100644 --- a/src/backend/access/tablesample/tablesample.c +++ b/src/backend/access/tablesample/tablesample.c @@ -78,9 +78,12 @@ tablesample_init(SampleScanState *scanstate, TableSampleClause *tablesample) fcinfo.argnull[0] = false; /* - * Second arg for init function is always REPEATABLE When - * tablesample->repeatable is NULL then REPEATABLE clause was not - * specified. When specified, the expression cannot evaluate to NULL. + * Second arg for init function is always REPEATABLE. + * + * If tablesample->repeatable is NULL then REPEATABLE clause was not + * specified, and we insert a random value as default. + * + * When specified, the expression cannot evaluate to NULL. */ if (tablesample->repeatable) { -- cgit v1.2.3