diff options
Diffstat (limited to 'src/bin/pg_dump/pg_dump.h')
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index 8069a8f779b..b10d40876d2 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_dump.h,v 1.61 2001/04/03 08:52:59 pjw Exp $ + * $Id: pg_dump.h,v 1.62 2001/04/14 13:11:03 pjw Exp $ * * Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2 * @@ -88,6 +88,11 @@ typedef struct _tableInfo char *relname; char *relacl; char *viewdef; + char *viewoid; /* OID of view - should be >= oid of table + * important because views may be constructed + * manually from rules, and rule may ref things + * created after the base table was created. + */ bool sequence; int numatts; /* number of attributes */ int *inhAttrs; /* an array of flags, one for each |