summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-12-24 10:42:58 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2015-12-24 10:42:58 -0500
commit70ff73717004912a27506f31ef3c6aef77d64708 (patch)
tree74ed2329c890e8c15a1ef5b1c5e4933baa974c13
parentf56802a2d06f5f995c7eb1513d8ef5b978a8471c (diff)
Fix factual and grammatical errors in comments for struct _tableInfo.
Amit Langote, further adjusted by me
-rw-r--r--src/bin/pg_dump/pg_dump.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h
index ffe1facfd2b..7df99bd6c8d 100644
--- a/src/bin/pg_dump/pg_dump.h
+++ b/src/bin/pg_dump/pg_dump.h
@@ -245,11 +245,11 @@ typedef struct _tableInfo
bool hasrules; /* does it have any rules? */
bool hastriggers; /* does it have any triggers? */
bool hasoids; /* does it have OIDs? */
- uint32 frozenxid; /* for restore frozen xid */
- uint32 minmxid; /* for restore min multi xid */
- Oid toast_oid; /* for restore toast frozen xid */
- uint32 toast_frozenxid; /* for restore toast frozen xid */
- uint32 toast_minmxid; /* for restore toast min multi xid */
+ uint32 frozenxid; /* table's relfrozenxid */
+ uint32 minmxid; /* table's relminmxid */
+ Oid toast_oid; /* toast table's OID, or 0 if none */
+ uint32 toast_frozenxid; /* toast table's relfrozenxid, if any */
+ uint32 toast_minmxid; /* toast table's relminmxid */
int ncheck; /* # of CHECK expressions */
char *reloftype; /* underlying type for typed table */
/* these two are set only if table is a sequence owned by a column: */