diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-29 01:38:56 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-29 01:38:56 +0000 |
commit | 49bf04ba8cd3390dd4abbc7e10242f60f67c1f93 (patch) | |
tree | 1fc3a92aa69e918669dba5ff4d0732bc2d2477a0 /src/bin/pg_dump/pg_backup_custom.c | |
parent | dc20063e43d6bbc97381c03b7651c5bbafea7f35 (diff) | |
download | postgresql-49bf04ba8cd3390dd4abbc7e10242f60f67c1f93.tar.gz postgresql-49bf04ba8cd3390dd4abbc7e10242f60f67c1f93.zip |
Fix some more not-schema-aware queries in pg_dump. Also fix some places
that would do the wrong thing with BLOB OIDs exceeding 2G.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_custom.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index 93e58378f4f..69ab37534da 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -19,7 +19,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.18 2002/04/24 02:21:04 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.19 2002/05/29 01:38:56 tgl Exp $ * * Modifications - 28-Jun-2000 - pjw@rhyme.com.au * @@ -638,7 +638,7 @@ _PrintData(ArchiveHandle *AH) static void _LoadBlobs(ArchiveHandle *AH) { - int oid; + Oid oid; StartRestoreBlobs(AH); @@ -664,7 +664,7 @@ _LoadBlobs(ArchiveHandle *AH) static void _skipBlobs(ArchiveHandle *AH) { - int oid; + Oid oid; oid = ReadInt(AH); while (oid != 0) |