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/parser/parse_utilcmd.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/backend/parser/parse_utilcmd.c') diff --git a/src/backend/parser/parse_utilcmd.c b/src/backend/parser/parse_utilcmd.c index c6f3628def2..da5ede866cc 100644 --- a/src/backend/parser/parse_utilcmd.c +++ b/src/backend/parser/parse_utilcmd.c @@ -484,10 +484,10 @@ generateSerialExtraStmts(CreateStmtContext *cxt, ColumnDef *column, cxt->blist = lappend(cxt->blist, seqstmt); /* - * Store the identity sequence name that we decided on. ALTER TABLE - * ... ADD COLUMN ... IDENTITY needs this so that it can fill the new - * column with values from the sequence, while the association of the - * sequence with the table is not set until after the ALTER TABLE. + * Store the identity sequence name that we decided on. ALTER TABLE ... + * ADD COLUMN ... IDENTITY needs this so that it can fill the new column + * with values from the sequence, while the association of the sequence + * with the table is not set until after the ALTER TABLE. */ column->identitySequence = seqstmt->sequence; @@ -1193,14 +1193,14 @@ transformTableLikeClause(CreateStmtContext *cxt, TableLikeClause *table_like_cla */ if (table_like_clause->options & CREATE_TABLE_LIKE_STATISTICS) { - List *parent_extstats; - ListCell *l; + List *parent_extstats; + ListCell *l; parent_extstats = RelationGetStatExtList(relation); foreach(l, parent_extstats) { - Oid parent_stat_oid = lfirst_oid(l); + Oid parent_stat_oid = lfirst_oid(l); CreateStatsStmt *stats_stmt; stats_stmt = generateClonedExtStatsStmt(cxt->relation, @@ -1643,16 +1643,16 @@ static CreateStatsStmt * generateClonedExtStatsStmt(RangeVar *heapRel, Oid heapRelid, Oid source_statsid) { - HeapTuple ht_stats; + HeapTuple ht_stats; Form_pg_statistic_ext statsrec; CreateStatsStmt *stats; - List *stat_types = NIL; - List *def_names = NIL; - bool isnull; - Datum datum; - ArrayType *arr; - char *enabled; - int i; + List *stat_types = NIL; + List *def_names = NIL; + bool isnull; + Datum datum; + ArrayType *arr; + char *enabled; + int i; Assert(OidIsValid(heapRelid)); Assert(heapRel != NULL); -- cgit v1.2.3