Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51d7e25 commit 337b513Copy full SHA for 337b513
src/backend/storage/lmgr/lock.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/storage/lmgr/lock.c,v 1.135 2004/07/17 03:28:51 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/storage/lmgr/lock.c,v 1.136 2004/08/26 17:23:30 tgl Exp $
12
13
* NOTES
14
* Outside modules can create a lock table and acquire/release
@@ -337,6 +337,9 @@ LockMethodTableRename(LOCKMETHODID lockmethodid)
337
NumLockMethods++;
338
339
LockMethods[newLockMethodId] = LockMethods[lockmethodid];
340
+ LockMethodLockHash[newLockMethodId] = LockMethodLockHash[lockmethodid];
341
+ LockMethodProcLockHash[newLockMethodId] = LockMethodProcLockHash[lockmethodid];
342
+
343
return newLockMethodId;
344
}
345
0 commit comments