diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-26 05:45:36 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-26 05:45:36 +0000 |
commit | 2af4f0aa7c966cb4ccf2f6414d4497ad2d7ea0fc (patch) | |
tree | 5e92a352a96dbb8e87033f73d9ed89163435a7d6 | |
parent | cdb94b9419f0a14f8be706b13836b9d1f79a85d9 (diff) |
Fix the prototype for pg_dump's dumpClasses
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index 15bb8bd0bc6..05920649811 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.2.1 1996/08/24 20:54:43 scrappy Exp $ + * $Id: pg_dump.h,v 1.3.2.2 1996/08/26 05:45:36 scrappy Exp $ * * Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2 * @@ -190,7 +190,8 @@ extern void dumpTables(FILE* fout, TableInfo* tbinfo, int numTables, extern void dumpIndices(FILE* fout, IndInfo* indinfo, int numIndices, TableInfo* tbinfo, int numTables, char *tablename); -extern void dumpClasses(TableInfo *tbinfo, int numTables, FILE *fout, char *tablename); +extern void dumpClasses(TableInfo *tbinfo, int numTables, FILE *fout, + char *tablename, int oids); extern void dumpTuples(PGresult *res, FILE *fout, int *attrmap); extern char* checkForQuote(char* s); extern int findLastBuiltinOid(); |