diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-09-21 21:58:30 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-09-21 21:58:30 +0000 |
commit | fdf07fe14f20ed22cba4d7da2544522778de71d8 (patch) | |
tree | df23db089529f9348f5b1aa2d4147f852cdc2fb5 /src/bin/pg_dump/pg_backup_custom.c | |
parent | 196700c372d6ba9d13f1a38cf6b9a4cef3f0f013 (diff) | |
download | postgresql-fdf07fe14f20ed22cba4d7da2544522778de71d8.tar.gz postgresql-fdf07fe14f20ed22cba4d7da2544522778de71d8.zip |
For consistency with the rest of PostgreSQL, rename BLOBs to large objects
in messages and documentation.
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 7aeffac1d1c..76d4a78ff78 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.14 2001/08/19 22:17:03 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.15 2001/09/21 21:58:30 petere Exp $ * * Modifications - 28-Jun-2000 - pjw@rhyme.com.au * @@ -386,7 +386,7 @@ static void _StartBlob(ArchiveHandle *AH, TocEntry *te, Oid oid) { if (oid == 0) - die_horribly(AH, modulename, "invalid OID for BLOB\n"); + die_horribly(AH, modulename, "invalid OID for large object\n"); WriteInt(AH, oid); _StartDataCompressor(AH, te); @@ -503,7 +503,7 @@ _PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt) case BLK_BLOBS: if (!AH->connection) - die_horribly(AH, modulename, "BLOBs cannot be loaded without a database connection\n"); + die_horribly(AH, modulename, "large objects cannot be loaded without a database connection\n"); _LoadBlobs(AH); break; |