We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentbee172f commit96cd61aCopy full SHA for 96cd61a
src/bin/pg_dump/pg_dump.h
@@ -213,11 +213,11 @@ typedef struct _tableInfo
213
boolrowsec;/* is row security enabled? */
214
boolforcerowsec;/* is row security forced? */
215
boolhasoids;/* does it have OIDs? */
216
-uint32frozenxid;/*for restore frozen xid */
217
-uint32minmxid;/*for restore min multi xid */
218
-Oidtoast_oid;/*for restore toast frozen xid */
219
-uint32toast_frozenxid;/*for restore toast frozen xid */
220
-uint32toast_minmxid;/*for restoretoastmin multi xid */
+uint32frozenxid;/*table's relfrozenxid */
+uint32minmxid;/*table's relminmxid */
+Oidtoast_oid;/*toast table's OID, or 0 if none */
+uint32toast_frozenxid;/*toast table's relfrozenxid, if any */
+uint32toast_minmxid;/* toasttable's relminmxid */
221
intncheck;/* # of CHECK expressions */
222
char*reloftype;/* underlying type for typed table */
223
/* these two are set only if table is a sequence owned by a column: */