summaryrefslogtreecommitdiff
path: root/src/backend/executor/execAmi.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-09 17:03:14 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-09 17:03:14 +0000
commit318e593f03c4e8b8b52bc6792403c0a4909f3213 (patch)
tree3a07fd942bb67611366d0dccb13c72a0a17de42f /src/backend/executor/execAmi.c
parent78511d8fe94e6c27a208f2370ca561ba941305c6 (diff)
downloadpostgresql-318e593f03c4e8b8b52bc6792403c0a4909f3213.tar.gz
Rename Temp to Noname for noname tables.
Diffstat (limited to 'src/backend/executor/execAmi.c')
-rw-r--r--src/backend/executor/execAmi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/execAmi.c b/src/backend/executor/execAmi.c
index 1e985edbef..8ea66c3a2c 100644
--- a/src/backend/executor/execAmi.c
+++ b/src/backend/executor/execAmi.c
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execAmi.c,v 1.30 1999/02/02 03:44:23 momjian Exp $
+ * $Id: execAmi.c,v 1.31 1999/02/09 17:02:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -50,7 +50,7 @@
#include "executor/nodeAppend.h"
#include "executor/nodeSubplan.h"
#include "executor/execdebug.h"
-#include "optimizer/internal.h" /* for _TEMP_RELATION_ID_ */
+#include "optimizer/internal.h" /* for _NONAME_RELATION_ID_ */
#include "access/genam.h"
#include "access/heapam.h"
#include "catalog/heap.h"
@@ -509,11 +509,11 @@ ExecCreatR(TupleDesc tupType,
relDesc = NULL;
- if (relationOid == _TEMP_RELATION_ID_)
+ if (relationOid == _NONAME_RELATION_ID_)
{
/* ----------------
* create a temporary relation
- * (currently the planner always puts a _TEMP_RELATION_ID
+ * (currently the planner always puts a _NONAME_RELATION_ID
* in the relation argument so we expect this to be the case although
* it's possible that someday we'll get the name from
* from the range table.. -cim 10/12/89)