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/include/executor/executor.h | |
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/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 40a696e2976..9693435977d 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.91 2003/03/11 19:40:23 tgl Exp $ + * $Id: executor.h,v 1.92 2003/05/05 17:57:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -101,7 +101,6 @@ extern PlanState *ExecInitNode(Plan *node, EState *estate); extern TupleTableSlot *ExecProcNode(PlanState *node); extern int ExecCountSlotsNode(Plan *node); extern void ExecEndNode(PlanState *node); -extern TupleDesc ExecGetTupType(PlanState *node); /* * prototypes from functions in execQual.c |