Fix a couple of small things from D'Arcy's last patch
Submitted by: D'Arcy Cain
This commit is contained in:
parent
a409f40ea8
commit
ea733aa997
@ -20,7 +20,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.10 1996/10/07 03:30:37 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.11 1996/10/07 21:17:01 scrappy Exp $
|
||||||
*
|
*
|
||||||
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
|
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
|
||||||
*
|
*
|
||||||
@ -1193,7 +1193,7 @@ dumpAggs(FILE* fout, AggInfo* agginfo, int numAggs,
|
|||||||
|
|
||||||
void dumpTables(FILE* fout, TableInfo *tblinfo, int numTables,
|
void dumpTables(FILE* fout, TableInfo *tblinfo, int numTables,
|
||||||
InhInfo *inhinfo, int numInherits,
|
InhInfo *inhinfo, int numInherits,
|
||||||
TypeInfo *tinfo, int numTypes, char *tablename)
|
TypeInfo *tinfo, int numTypes, const char *tablename)
|
||||||
{
|
{
|
||||||
int i,j,k;
|
int i,j,k;
|
||||||
char q[MAXQUERYLEN];
|
char q[MAXQUERYLEN];
|
||||||
@ -1305,7 +1305,7 @@ dumpIndices(FILE* fout, IndInfo* indinfo, int numIndices,
|
|||||||
int i;
|
int i;
|
||||||
int tableInd;
|
int tableInd;
|
||||||
const char *attname; /* the name of the indexed attribute */
|
const char *attname; /* the name of the indexed attribute */
|
||||||
const char *funcname; /* the name of the function to comput the index key from*/
|
char *funcname; /* the name of the function to comput the index key from*/
|
||||||
int indkey;
|
int indkey;
|
||||||
|
|
||||||
char q[MAXQUERYLEN];
|
char q[MAXQUERYLEN];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user