diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-09 17:03:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-09 17:03:14 +0000 |
commit | 318e593f03c4e8b8b52bc6792403c0a4909f3213 (patch) | |
tree | 3a07fd942bb67611366d0dccb13c72a0a17de42f /src/backend/executor/nodeMaterial.c | |
parent | 78511d8fe94e6c27a208f2370ca561ba941305c6 (diff) | |
download | postgresql-318e593f03c4e8b8b52bc6792403c0a4909f3213.tar.gz postgresql-318e593f03c4e8b8b52bc6792403c0a4909f3213.zip |
Rename Temp to Noname for noname tables.
Diffstat (limited to 'src/backend/executor/nodeMaterial.c')
-rw-r--r-- | src/backend/executor/nodeMaterial.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/nodeMaterial.c b/src/backend/executor/nodeMaterial.c index 87974668bb0..c4171c7a1bc 100644 --- a/src/backend/executor/nodeMaterial.c +++ b/src/backend/executor/nodeMaterial.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.19 1999/02/03 21:16:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.20 1999/02/09 17:02:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,7 +25,7 @@ #include "executor/nodeMaterial.h" #include "catalog/catalog.h" #include "catalog/heap.h" -#include "optimizer/internal.h" /* for _TEMP_RELATION_ID_ */ +#include "optimizer/internal.h" /* for _NONAME_RELATION_ID_ */ #include "access/heapam.h" /* ---------------------------------------------------------------- @@ -265,7 +265,7 @@ ExecInitMaterial(Material *node, EState *estate, Plan *parent) /* ---------------- * ExecCreatR wants it's second argument to be an object id of - * a relation in the range table or a _TEMP_RELATION_ID + * a relation in the range table or a _NONAME_RELATION_ID * indicating that the relation is not in the range table. * * In the second case ExecCreatR creates a temp relation. @@ -277,7 +277,7 @@ ExecInitMaterial(Material *node, EState *estate, Plan *parent) * ---------------- */ /* len = ExecTargetListLength(node->plan.targetlist); */ - tempDesc = ExecCreatR(tupType, _TEMP_RELATION_ID_); + tempDesc = ExecCreatR(tupType, _NONAME_RELATION_ID_); /* ---------------- * save the relation descriptor in the sortstate |