diff options
Diffstat (limited to 'src/bin/pg_dump/pg_backup_archiver.h')
| -rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/bin/pg_dump/pg_backup_archiver.h b/src/bin/pg_dump/pg_backup_archiver.h index 0a135ee126f..9f826b678a1 100644 --- a/src/bin/pg_dump/pg_backup_archiver.h +++ b/src/bin/pg_dump/pg_backup_archiver.h @@ -321,6 +321,8 @@ typedef struct _tocEntry  	struct _tocEntry *par_next; /* these are NULL if not in either list */  	bool		created;		/* set for DATA member if TABLE was created */  	int			depCount;		/* number of dependencies not yet restored */ +	DumpId	   *revDeps;		/* dumpIds of objects depending on this one */ +	int			nRevDeps;		/* number of such dependencies */  	DumpId	   *lockDeps;		/* dumpIds of objects this one needs lock on */  	int			nLockDeps;		/* number of such dependencies */  } TocEntry; | 
