From bdf46af748d0f15f257c99bf06e9e25aba6a24f9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 26 Apr 2018 14:47:16 -0400 Subject: Post-feature-freeze pgindent run. Discussion: https://postgr.es/m/15719.1523984266@sss.pgh.pa.us --- src/backend/commands/statscmds.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/backend/commands/statscmds.c') diff --git a/src/backend/commands/statscmds.c b/src/backend/commands/statscmds.c index c4adfd569e..3bb0d24cd2 100644 --- a/src/backend/commands/statscmds.c +++ b/src/backend/commands/statscmds.c @@ -133,7 +133,8 @@ CreateStatistics(CreateStatsStmt *stmt) * If the node has a name, split it up and determine creation namespace. * If not (a possibility not considered by the grammar, but one which can * occur via the "CREATE TABLE ... (LIKE)" command), then we put the - * object in the same namespace as the relation, and cons up a name for it. + * object in the same namespace as the relation, and cons up a name for + * it. */ if (stmt->defnames) namespaceId = QualifiedNameGetCreationNamespace(stmt->defnames, @@ -462,7 +463,7 @@ ChooseExtendedStatisticName(const char *name1, const char *name2, for (;;) { - Oid existingstats; + Oid existingstats; stxname = makeObjectName(name1, name2, modlabel); @@ -500,7 +501,7 @@ ChooseExtendedStatisticNameAddition(List *exprs) buf[0] = '\0'; foreach(lc, exprs) { - ColumnRef *cref = (ColumnRef *) lfirst(lc); + ColumnRef *cref = (ColumnRef *) lfirst(lc); const char *name; /* It should be one of these, but just skip if it happens not to be */ -- cgit v1.2.1