diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-10-25 01:33:17 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-10-25 01:33:17 +0000 |
commit | fc5c577e34a53af8104415bae63d315fee2b125a (patch) | |
tree | 8c997ff545de26936a0d532acbaac8ff7a6f2fe8 /src/bin/pg_dump/common.c | |
parent | 2908a838ac2cf8cdccaa115249f8399eef8a731e (diff) | |
download | postgresql-fc5c577e34a53af8104415bae63d315fee2b125a.tar.gz postgresql-fc5c577e34a53af8104415bae63d315fee2b125a.zip |
Allow fseeko in pg_dump only if fseeko() will work for all supported file
sizes.
Diffstat (limited to 'src/bin/pg_dump/common.c')
-rw-r--r-- | src/bin/pg_dump/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/common.c b/src/bin/pg_dump/common.c index 7870a0d66d2..a703660aa24 100644 --- a/src/bin/pg_dump/common.c +++ b/src/bin/pg_dump/common.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.71 2002/10/09 16:20:25 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.72 2002/10/25 01:33:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -290,7 +290,7 @@ flagInhAttrs(TableInfo *tblinfo, int numTables, * attr with the same name, then only dump it if: * * - it is NOT NULL and zero parents are NOT NULL - * OR + * OR * - it has a default value AND the default value does not match * all parent default values, or no parents specify a default. * |