1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

Actually delete the patch file which we are no longer applying.

This commit is contained in:
Matthew Seaman 2020-09-12 11:39:35 +00:00
parent cd621b0cbb
commit e556b8c28f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=548308

View File

@ -1,63 +0,0 @@
--- pglogical_dependency.c.orig 2020-04-06 19:40:00 UTC
+++ pglogical_dependency.c
@@ -232,8 +232,6 @@ static void reportDependentObjects(const ObjectAddress
DropBehavior behavior,
int msglevel,
const ObjectAddress *origObject);
-static void AcquireDeletionLock(const ObjectAddress *object, int flags);
-static void ReleaseDeletionLock(const ObjectAddress *object);
static bool find_expr_references_walker(Node *node,
find_expr_references_context *context);
static void eliminate_duplicate_dependencies(ObjectAddresses *addrs);
@@ -926,51 +924,6 @@ reportDependentObjects(const ObjectAddresses *targetOb
pfree(clientdetail.data);
pfree(logdetail.data);
-}
-
-/*
- * AcquireDeletionLock - acquire a suitable lock for deleting an object
- *
- * We use LockRelation for relations, LockDatabaseObject for everything
- * else. Note that dependency.c is not concerned with deleting any kind of
- * shared-across-databases object, so we have no need for LockSharedObject.
- */
-static void
-AcquireDeletionLock(const ObjectAddress *object, int flags)
-{
- if (object->classId == RelationRelationId)
- {
- /*
- * In DROP INDEX CONCURRENTLY, take only ShareUpdateExclusiveLock on
- * the index for the moment. index_drop() will promote the lock once
- * it's safe to do so. In all other cases we need full exclusive
- * lock.
- */
- if (flags & PERFORM_DELETION_CONCURRENTLY)
- LockRelationOid(object->objectId, ShareUpdateExclusiveLock);
- else
- LockRelationOid(object->objectId, AccessExclusiveLock);
- }
- else
- {
- /* assume we should lock the whole object not a sub-object */
- LockDatabaseObject(object->classId, object->objectId, 0,
- AccessExclusiveLock);
- }
-}
-
-/*
- * ReleaseDeletionLock - release an object deletion lock
- */
-static void
-ReleaseDeletionLock(const ObjectAddress *object)
-{
- if (object->classId == RelationRelationId)
- UnlockRelationOid(object->objectId, AccessExclusiveLock);
- else
- /* assume we should lock the whole object not a sub-object */
- UnlockDatabaseObject(object->classId, object->objectId, 0,
- AccessExclusiveLock);
}
/*