From: Philip Warner Date: Sat, 5 Aug 2000 10:02:28 +0000 (+0000) Subject: - Minor fix to create temp table for xrefs X-Git-Tag: REL7_1_BETA~802 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ebb751219f83bb3ea5ed3762e85152ad0d62bae;p=thirdparty%2Fpostgresql.git - Minor fix to create temp table for xrefs --- diff --git a/src/bin/pg_dump/pg_backup_db.c b/src/bin/pg_dump/pg_backup_db.c index e2c6039a5f9..bf6ccffc2a9 100644 --- a/src/bin/pg_dump/pg_backup_db.c +++ b/src/bin/pg_dump/pg_backup_db.c @@ -640,10 +640,7 @@ void CreateBlobXrefTable(ArchiveHandle* AH) ahlog(AH, 1, "Creating table for BLOBS xrefs\n"); -/* appendPQExpBuffer(qry, "Create Temporary Table %s(oldOid oid, newOid oid);", BLOB_XREF_TABLE); -*/ - appendPQExpBuffer(qry, "Create Table %s(oldOid oid, newOid oid);", BLOB_XREF_TABLE); _executeSqlCommand(AH, AH->blobConnection, qry, "can not create BLOB xref table '" BLOB_XREF_TABLE "'");