diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-06-26 01:58:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-06-26 01:58:46 +0000 |
commit | ae6a6585849bc6f09474e7341d92a9d5d6d17e76 (patch) | |
tree | df7b1b9d3897049421c5e80c13f0711aee07e599 /src/backend/storage/lmgr/multi.c | |
parent | eef15f555b88c0470ee1371f2983c6400333c198 (diff) |
Rename LockTab to LockTable in function name.
Diffstat (limited to 'src/backend/storage/lmgr/multi.c')
-rw-r--r-- | src/backend/storage/lmgr/multi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/lmgr/multi.c b/src/backend/storage/lmgr/multi.c index 6c14bcd8958..0dc19798118 100644 --- a/src/backend/storage/lmgr/multi.c +++ b/src/backend/storage/lmgr/multi.c @@ -12,7 +12,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.14 1998/06/23 17:59:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.15 1998/06/26 01:58:45 momjian Exp $ * * NOTES: * (1) The lock.c module assumes that the caller here is doing @@ -96,14 +96,14 @@ InitMultiLevelLockm() if (MultiTableId) return MultiTableId; - tableId = LockTabInit("LockTable", MultiConflicts, MultiPrios, 5); + tableId = LockTableInit("LockTable", MultiConflicts, MultiPrios, 5); MultiTableId = tableId; if (!(MultiTableId)) elog(ERROR, "InitMultiLockm: couldnt initialize lock table"); /* ----------------------- * No short term lock table for now. -Jeff 15 July 1991 * - * ShortTermTableId = LockTabRename(tableId); + * ShortTermTableId = LockTableRename(tableId); * if (! (ShortTermTableId)) { * elog(ERROR,"InitMultiLockm: couldnt rename lock table"); * } |