Skip to content

Commit 70ff737

Browse files
committed
Fix factual and grammatical errors in comments for struct _tableInfo.
Amit Langote, further adjusted by me
1 parent f56802a commit 70ff737

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/bin/pg_dump/pg_dump.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,11 @@ typedef struct _tableInfo
245245
bool hasrules; /* does it have any rules? */
246246
bool hastriggers; /* does it have any triggers? */
247247
bool hasoids; /* does it have OIDs? */
248-
uint32 frozenxid; /* for restore frozen xid */
249-
uint32 minmxid; /* for restore min multi xid */
250-
Oid toast_oid; /* for restore toast frozen xid */
251-
uint32 toast_frozenxid; /* for restore toast frozen xid */
252-
uint32 toast_minmxid; /* for restore toast min multi xid */
248+
uint32 frozenxid; /* table's relfrozenxid */
249+
uint32 minmxid; /* table's relminmxid */
250+
Oid toast_oid; /* toast table's OID, or 0 if none */
251+
uint32 toast_frozenxid; /* toast table's relfrozenxid, if any */
252+
uint32 toast_minmxid; /* toast table's relminmxid */
253253
int ncheck; /* # of CHECK expressions */
254254
char *reloftype; /* underlying type for typed table */
255255
/* these two are set only if table is a sequence owned by a column: */

0 commit comments

Comments
 (0)