From 49bf04ba8cd3390dd4abbc7e10242f60f67c1f93 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 29 May 2002 01:38:56 +0000 Subject: 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. --- src/bin/pg_dump/pg_backup_custom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/bin/pg_dump/pg_backup_custom.c') 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) -- cgit v1.2.3