mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
- Minor fix to create temp table for xrefs
This commit is contained in:
@ -640,10 +640,7 @@ void CreateBlobXrefTable(ArchiveHandle* AH)
|
|||||||
|
|
||||||
ahlog(AH, 1, "Creating table for BLOBS xrefs\n");
|
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 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 "'");
|
_executeSqlCommand(AH, AH->blobConnection, qry, "can not create BLOB xref table '" BLOB_XREF_TABLE "'");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user