1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Fix problem with temp tables shown in regression test by Jan.

This commit is contained in:
Bruce Momjian
1999-11-17 23:51:21 +00:00
parent 211ed36635
commit 1276aef2f5
3 changed files with 8 additions and 9 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.35 1999/09/18 19:07:38 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.36 1999/11/17 23:51:21 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -118,7 +118,7 @@ RelationInitLockInfo(Relation relation)
Assert(RelationIsValid(relation));
Assert(OidIsValid(RelationGetRelid(relation)));
relname = (char *) RelationGetRelationName(relation);
relname = (char *) RelationGetPhysicalRelationName(relation);
relation->rd_lockInfo.lockRelId.relId = RelationGetRelid(relation);