diff options
| author | Andres Freund | 2019-03-31 03:13:56 +0000 |
|---|---|---|
| committer | Andres Freund | 2019-04-01 01:16:53 +0000 |
| commit | 4bb50236eb561f4639e75a393a5a1c9b8681acfb (patch) | |
| tree | a6e457a7e3e935e31a00339bd1e768293fa95d91 /src/backend/optimizer | |
| parent | 76a39f2295ecb040f2ea052320941e1eb9b526c0 (diff) | |
tableam: Formatting and other minor cleanups.
The superflous heapam_xlog.h includes were reported by Peter
Geoghegan.
Diffstat (limited to 'src/backend/optimizer')
| -rw-r--r-- | src/backend/optimizer/util/plancat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/util/plancat.c b/src/backend/optimizer/util/plancat.c index 89f909bceb3..74867203c7e 100644 --- a/src/backend/optimizer/util/plancat.c +++ b/src/backend/optimizer/util/plancat.c @@ -2068,9 +2068,9 @@ bool has_stored_generated_columns(PlannerInfo *root, Index rti) { RangeTblEntry *rte = planner_rt_fetch(rti, root); - Relation relation; + Relation relation; TupleDesc tupdesc; - bool result = false; + bool result = false; /* Assume we already have adequate lock */ relation = heap_open(rte->relid, NoLock); |
