aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeSort.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-05-05 17:57:47 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-05-05 17:57:47 +0000
commit94a3c60324465f98850b60f548c1ea481ab4e52f (patch)
treeef5eef6fef67ab7423a30c8aa6c1560946303859 /src/backend/executor/nodeSort.c
parent20aea2ec7b278e664e420172160073ccc2ad24ad (diff)
downloadpostgresql-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/nodeSort.c')
-rw-r--r--src/backend/executor/nodeSort.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/backend/executor/nodeSort.c b/src/backend/executor/nodeSort.c
index a37583241fb..2be31ce09e8 100644
--- a/src/backend/executor/nodeSort.c
+++ b/src/backend/executor/nodeSort.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.42 2002/12/15 16:17:46 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.43 2003/05/05 17:57:47 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -137,7 +137,7 @@ ExecSort(SortState *node)
"calling tuplesort_begin");
outerNode = outerPlanState(node);
- tupDesc = ExecGetTupType(outerNode);
+ tupDesc = ExecGetResultType(outerNode);
ExtractSortKeys(plannode, &sortOperators, &attNums);
@@ -174,11 +174,6 @@ ExecSort(SortState *node)
estate->es_direction = dir;
/*
- * make sure the tuple descriptor is up to date (is this needed?)
- */
- ExecAssignResultType(&node->ss.ps, tupDesc, false);
-
- /*
* finally set the sorted flag to true
*/
node->sort_Done = true;