Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Fix factual and grammatical errors in comments for struct _tableInfo.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 24 Dec 2015 15:42:59 +0000 (10:42 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 24 Dec 2015 15:42:59 +0000 (10:42 -0500)
Amit Langote, further adjusted by me

src/bin/pg_dump/pg_dump.h

index bf3ada719f9974d8684e666efd6fab902a0af4a4..59672e9e8af3afd5bdbb6a3ea1de828b3160c3f0 100644 (file)
@@ -243,11 +243,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: */