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 parent534a415 commitc03e442Copy full SHA for c03e442
src/bin/pg_dump/pg_dump.h
@@ -243,11 +243,11 @@ typedef struct _tableInfo
243
boolhasrules;/* does it have any rules? */
244
boolhastriggers;/* does it have any triggers? */
245
boolhasoids;/* does it have OIDs? */
246
-uint32frozenxid;/*for restore frozen xid */
247
-uint32minmxid;/*for restore min multi xid */
248
-Oidtoast_oid;/*for restore toast frozen xid */
249
-uint32toast_frozenxid;/*for restore toast frozen xid */
250
-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 */
251
intncheck;/* # of CHECK expressions */
252
char*reloftype;/* underlying type for typed table */
253
/* these two are set only if table is a sequence owned by a column: */