- Minor fix to create temp table for xrefs

REL7_1_STABLE
Philip Warner 26 years ago
parent c2e302071f
commit 4ebb751219
  1. 3
      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 "'");

Loading…
Cancel
Save