|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $PostgreSQL: pgsql/src/backend/storage/lmgr/lock.c,v 1.135 2004/07/17 03:28:51 tgl Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/storage/lmgr/lock.c,v 1.136 2004/08/26 17:23:30 tgl Exp $ |
12 | 12 | *
|
13 | 13 | * NOTES
|
14 | 14 | * Outside modules can create a lock table and acquire/release
|
@@ -337,6 +337,9 @@ LockMethodTableRename(LOCKMETHODID lockmethodid)
|
337 | 337 | NumLockMethods++;
|
338 | 338 |
|
339 | 339 | LockMethods[newLockMethodId]=LockMethods[lockmethodid];
|
| 340 | +LockMethodLockHash[newLockMethodId]=LockMethodLockHash[lockmethodid]; |
| 341 | +LockMethodProcLockHash[newLockMethodId]=LockMethodProcLockHash[lockmethodid]; |
| 342 | + |
340 | 343 | returnnewLockMethodId;
|
341 | 344 | }
|
342 | 345 |
|
|