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