OSDN Git Service

- Minor fix to create temp table for xrefs
authorPhilip Warner <pjw@rhyme.com.au>
Sat, 5 Aug 2000 10:02:28 +0000 (10:02 +0000)
committerPhilip Warner <pjw@rhyme.com.au>
Sat, 5 Aug 2000 10:02:28 +0000 (10:02 +0000)
src/bin/pg_dump/pg_backup_db.c

index e2c6039..bf6ccff 100644 (file)
@@ -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 "'");