aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/common.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-04-26 14:47:16 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2018-04-26 14:47:16 -0400
commitbdf46af748d0f15f257c99bf06e9e25aba6a24f9 (patch)
tree3637d69ad413fdc23098cc2cf94b2cd57fd44dab /src/bin/pg_dump/common.c
parentf83bf385c1dad4964e0d899174989a1668536182 (diff)
downloadpostgresql-bdf46af748d0f15f257c99bf06e9e25aba6a24f9.tar.gz
postgresql-bdf46af748d0f15f257c99bf06e9e25aba6a24f9.zip
Post-feature-freeze pgindent run.
Discussion: https://postgr.es/m/15719.1523984266@sss.pgh.pa.us
Diffstat (limited to 'src/bin/pg_dump/common.c')
-rw-r--r--src/bin/pg_dump/common.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bin/pg_dump/common.c b/src/bin/pg_dump/common.c
index e7db78b0ff1..0d147cb08d1 100644
--- a/src/bin/pg_dump/common.c
+++ b/src/bin/pg_dump/common.c
@@ -350,8 +350,8 @@ flagInhTables(Archive *fout, TableInfo *tblinfo, int numTables,
findParentsByOid(&tblinfo[i], inhinfo, numInherits);
/*
- * If needed, mark the parents as interesting for getTableAttrs
- * and getIndexes.
+ * If needed, mark the parents as interesting for getTableAttrs and
+ * getIndexes.
*/
if (mark_parents)
{
@@ -372,9 +372,9 @@ flagInhTables(Archive *fout, TableInfo *tblinfo, int numTables,
static void
flagInhIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
{
- int i,
- j,
- k;
+ int i,
+ j,
+ k;
DumpableObject ***parentIndexArray;
parentIndexArray = (DumpableObject ***)
@@ -382,7 +382,7 @@ flagInhIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
for (i = 0; i < numTables; i++)
{
- TableInfo *parenttbl;
+ TableInfo *parenttbl;
IndexAttachInfo *attachinfo;
if (!tblinfo[i].ispartition || tblinfo[i].numParents == 0)
@@ -430,9 +430,9 @@ flagInhIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
/*
* We want dependencies from parent to partition (so that the
- * partition index is created first), and another one from
- * attach object to parent (so that the partition index is
- * attached once the parent index has been created).
+ * partition index is created first), and another one from attach
+ * object to parent (so that the partition index is attached once
+ * the parent index has been created).
*/
addObjectDependency(&parentidx->dobj, index->dobj.dumpId);
addObjectDependency(&attachinfo[k].dobj, parentidx->dobj.dumpId);