Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit abb0e70

Browse files
committed
Dump DEFAULT, CHECK, Triggers.
Fix BASETYPE for aggregates with sfunc2 only.
1 parent 1b677e7 commit abb0e70

File tree

3 files changed

+326
-41
lines changed

3 files changed

+326
-41
lines changed

src/bin/pg_dump/common.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.16 1997/09/08 21:49:50 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.17 1997/10/02 13:57:03 vadim Exp $
1111
*
1212
* Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2
1313
*
@@ -262,7 +262,7 @@ dumpSchema(FILE *fout,
262262
if (g_verbose)
263263
fprintf(stderr, "%s reading user-defined tables %s\n",
264264
g_comment_start, g_comment_end);
265-
tblinfo = getTables(&numTables);
265+
tblinfo = getTables(&numTables, finfo, numFuncs);
266266

267267
if (g_verbose)
268268
fprintf(stderr, "%s reading table inheritance information %s\n",
@@ -336,7 +336,7 @@ dumpSchema(FILE *fout,
336336
*/
337337

338338
extern void
339-
dumpSchemaIdx(FILE *fout, int *numTablesPtr, const char *tablename,
339+
dumpSchemaIdx(FILE *fout, const char *tablename,
340340
TableInfo *tblinfo, int numTables)
341341
{
342342
int numIndices;

0 commit comments

Comments
 (0)