diff options
| author | Robert Haas | 2017-01-24 15:20:02 +0000 |
|---|---|---|
| committer | Robert Haas | 2017-01-24 15:20:02 +0000 |
| commit | 27cdb3414b3fb4c8fcc069572568390450bb04c9 (patch) | |
| tree | 3a9dace39830062e588aad7d2062171bdec6f343 /src/include/utils/rel.h | |
| parent | 96e0ccc2b589eda26585ed2a8dabf34b16747c1a (diff) | |
Reindent table partitioning code.
We've accumulated quite a bit of stuff with which pgindent is not
quite happy in this code; clean it up to provide a less-annoying base
for future pgindent runs.
Diffstat (limited to 'src/include/utils/rel.h')
| -rw-r--r-- | src/include/utils/rel.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index a1750accc23..a617a7cf566 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -124,11 +124,11 @@ typedef struct RelationData List *rd_fkeylist; /* list of ForeignKeyCacheInfo (see below) */ bool rd_fkeyvalid; /* true if list has been computed */ - MemoryContext rd_partkeycxt; /* private memory cxt for the below */ - struct PartitionKeyData *rd_partkey; /* partition key, or NULL */ - MemoryContext rd_pdcxt; /* private context for partdesc */ - struct PartitionDescData *rd_partdesc; /* partitions, or NULL */ - List *rd_partcheck; /* partition CHECK quals */ + MemoryContext rd_partkeycxt; /* private memory cxt for the below */ + struct PartitionKeyData *rd_partkey; /* partition key, or NULL */ + MemoryContext rd_pdcxt; /* private context for partdesc */ + struct PartitionDescData *rd_partdesc; /* partitions, or NULL */ + List *rd_partcheck; /* partition CHECK quals */ /* data managed by RelationGetIndexList: */ List *rd_indexlist; /* list of OIDs of indexes on relation */ |
