diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-05 17:57:47 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-05 17:57:47 +0000 |
commit | 94a3c60324465f98850b60f548c1ea481ab4e52f (patch) | |
tree | ef5eef6fef67ab7423a30c8aa6c1560946303859 /src/backend/executor/nodeNestloop.c | |
parent | 20aea2ec7b278e664e420172160073ccc2ad24ad (diff) | |
download | postgresql-94a3c60324465f98850b60f548c1ea481ab4e52f.tar.gz postgresql-94a3c60324465f98850b60f548c1ea481ab4e52f.zip |
Ditch ExecGetTupType() in favor of the much simpler ExecGetResultType(),
which does the same thing. Perhaps at one time there was a reason to
allow plan nodes to store their result types in different places, but
AFAICT that's been unnecessary for a good while.
Diffstat (limited to 'src/backend/executor/nodeNestloop.c')
-rw-r--r-- | src/backend/executor/nodeNestloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeNestloop.c b/src/backend/executor/nodeNestloop.c index 8ccc0392057..bddce76b437 100644 --- a/src/backend/executor/nodeNestloop.c +++ b/src/backend/executor/nodeNestloop.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeNestloop.c,v 1.31 2003/01/27 20:51:48 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeNestloop.c,v 1.32 2003/05/05 17:57:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -330,7 +330,7 @@ ExecInitNestLoop(NestLoop *node, EState *estate) case JOIN_LEFT: nlstate->nl_NullInnerTupleSlot = ExecInitNullTupleSlot(estate, - ExecGetTupType(innerPlanState(nlstate))); + ExecGetResultType(innerPlanState(nlstate))); break; default: elog(ERROR, "ExecInitNestLoop: unsupported join type %d", |