diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-24 06:51:19 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-24 06:51:19 +0000 |
commit | 352e2ae2ab0a18a46ec79753e746fa33c4de69f5 (patch) | |
tree | d4f3dc0b69f63b8bde896dc47e503c2e3b447b3b /src | |
parent | 82a4b0f225af03d99318e63951e1ea3ba08f74b7 (diff) |
Added in prototype for: extern void setMaxOid(FILE *fout);
The patch got applied to 2.x, not 1.x :(
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index 05920649811..ffb1bcfaadd 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.2 1996/08/26 05:45:36 scrappy Exp $ + * $Id: pg_dump.h,v 1.3.2.3 1996/10/24 06:51:19 scrappy Exp $ * * Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2 * @@ -193,6 +193,7 @@ extern void dumpIndices(FILE* fout, IndInfo* indinfo, int numIndices, extern void dumpClasses(TableInfo *tbinfo, int numTables, FILE *fout, char *tablename, int oids); extern void dumpTuples(PGresult *res, FILE *fout, int *attrmap); +extern void setMaxOid(FILE *fout); extern char* checkForQuote(char* s); extern int findLastBuiltinOid(); |