diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-17 04:19:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-17 04:19:41 +0000 |
commit | 50a90fac40db82680ac7ceacf3348f3f08f5343e (patch) | |
tree | 24d7acc1eae21fad0063ba7c9f5acd0f08c4d7d6 /src/bin/pg_dump/pg_backup_db.c | |
parent | 37ec19a15ce452ee94f32ebc3d6a9a45868e82fd (diff) | |
download | postgresql-50a90fac40db82680ac7ceacf3348f3f08f5343e.tar.gz postgresql-50a90fac40db82680ac7ceacf3348f3f08f5343e.zip |
Stamp HEAD as 9.0devel, and update various places that were referring to 8.5
(hope I got 'em all). Per discussion, this release will be 9.0 not 8.5.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_db.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_backup_db.c b/src/bin/pg_dump/pg_backup_db.c index 4aa10135bb0..53711de1191 100644 --- a/src/bin/pg_dump/pg_backup_db.c +++ b/src/bin/pg_dump/pg_backup_db.c @@ -5,7 +5,7 @@ * Implements the basic DB functions used by the archiver. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.86 2010/02/05 03:09:05 joe Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.87 2010/02/17 04:19:40 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -704,7 +704,7 @@ void DropBlobIfExists(ArchiveHandle *AH, Oid oid) { /* Call lo_unlink only if exists to avoid not-found error. */ - if (PQserverVersion(AH->connection) >= 80500) + if (PQserverVersion(AH->connection) >= 90000) { ahprintf(AH, "SELECT pg_catalog.lo_unlink(oid) " "FROM pg_catalog.pg_largeobject_metadata " |