diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-31 06:26:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-31 06:26:32 +0000 |
commit | 31141025214e9508be5cb05b87cd63e563960925 (patch) | |
tree | a11afc3f520cb986892e759159d026afc7c4140c /src/backend/access/transam/xlogutils.c | |
parent | 5f4745adf4fb2a1f933b25d7a2bc72b39fa9edfd (diff) | |
download | postgresql-31141025214e9508be5cb05b87cd63e563960925.tar.gz postgresql-31141025214e9508be5cb05b87cd63e563960925.zip |
Reimplement temp tables using schemas. The temp table map is history;
temp table entries in pg_class have the names the user would expect.
Diffstat (limited to 'src/backend/access/transam/xlogutils.c')
-rw-r--r-- | src/backend/access/transam/xlogutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlogutils.c b/src/backend/access/transam/xlogutils.c index 8a9554b2a6d..ae79ba85b1d 100644 --- a/src/backend/access/transam/xlogutils.c +++ b/src/backend/access/transam/xlogutils.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/access/transam/xlogutils.c,v 1.22 2002/03/02 21:39:20 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlogutils.c,v 1.23 2002/03/31 06:26:29 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -335,7 +335,7 @@ XLogOpenRelation(bool redo, RmgrId rmid, RelFileNode rnode) { res = _xl_new_reldesc(); - sprintf(RelationGetPhysicalRelationName(&(res->reldata)), "%u", rnode.relNode); + sprintf(RelationGetRelationName(&(res->reldata)), "%u", rnode.relNode); /* unexisting DB id */ res->reldata.rd_lockInfo.lockRelId.dbId = RecoveryDb; |