- Minor fix to create temp table for xrefs

This commit is contained in:
Philip Warner 2000-08-05 10:02:28 +00:00
parent c2e302071f
commit 4ebb751219
1 changed files with 0 additions and 3 deletions

View 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 "'");