diff options
Diffstat (limited to 'src/bin/pg_dump/pg_dump.h')
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index aacc5339fb2..d50015ccfca 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-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_dump.h,v 1.47 2000/01/26 05:57:38 momjian Exp $ + * $Id: pg_dump.h,v 1.48 2000/04/12 17:16:15 momjian Exp $ * * Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2 * @@ -75,7 +75,7 @@ typedef struct _tableInfo * attribute if the value is 1, then this * attribute is an inherited attribute */ char **attnames; /* the attribute names */ - char **attoids; /* oids of the various attributes */ + char **attoids; /* oids of the various attributes */ char **typnames; /* fill out attributes */ bool *notnull; /* Not null constraints of an attribute */ char **adef_expr; /* DEFAULT expressions */ @@ -95,9 +95,9 @@ typedef struct _tableInfo char **check_expr; /* [CONSTRAINT name] CHECK expressions */ int ntrig; /* # of triggers */ char **triggers; /* CREATE TRIGGER ... */ - char **trcomments; /* COMMENT ON TRIGGER ... */ - char **troids; /* TRIGGER oids */ - char *primary_key; /* PRIMARY KEY of the table, if any */ + char **trcomments; /* COMMENT ON TRIGGER ... */ + char **troids; /* TRIGGER oids */ + char *primary_key; /* PRIMARY KEY of the table, if any */ } TableInfo; typedef struct _inhInfo @@ -108,7 +108,7 @@ typedef struct _inhInfo typedef struct _indInfo { - char *indoid; /* oid of the pg_class entry for the index */ + char *indoid; /* oid of the pg_class entry for the index */ char *indexrelname; /* name of the secondary index class */ char *indrelname; /* name of the indexed heap class */ char *indamname; /* name of the access method (e.g. btree, @@ -234,4 +234,4 @@ extern void dumpIndices(FILE *fout, IndInfo *indinfo, int numIndices, TableInfo *tbinfo, int numTables, const char *tablename); extern const char *fmtId(const char *identifier, bool force_quotes); -#endif /* PG_DUMP_H */ +#endif /* PG_DUMP_H */ |