diff options
Diffstat (limited to 'src/bin/pg_dump/pg_dump.h')
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index 3d0287fa589..7e8a830457d 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_dump.h,v 1.3 1996/07/22 08:37:00 scrappy Exp $ + * $Id: pg_dump.h,v 1.4 1996/08/24 20:49:25 scrappy Exp $ * * Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2 * @@ -142,6 +142,8 @@ extern char g_opaque_type[10]; /* name for the opaque type */ */ extern TableInfo* dumpSchema(FILE* fout, int *numTablesPtr, char *tablename); +extern void dumpSchemaIdx(FILE* fout, int *numTablesPtr, char *tablename, + TableInfo* tblinfo, int numTables); extern char* findTypeByOid(TypeInfo* tinfo, int numTypes, char* oid); extern char* findOprByOid(OprInfo *oprinfo, int numOprs, char *oid); |