*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.91 2005/03/16 21:38:07 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.92 2005/03/31 02:02:52 neilc Exp $
*
*-------------------------------------------------------------------------
*/
* get state info from node
*/
outerNode = outerPlanState(node);
-
hashtable = node->hashtable;
/*
ExecHashTableInsert(hashtable, ExecFetchSlotTuple(slot), hashvalue);
}
- /*
- * Return the slot so that we have the tuple descriptor when we need
- * to save/restore them. -Jeff 11 July 1991 (XXX isn't this dead code?)
- */
- return slot;
+ /* We needn't return a tuple slot or anything else */
+ return NULL;
}
/* ----------------------------------------------------------------
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeHashjoin.c,v 1.69 2005/03/16 21:38:07 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeHashjoin.c,v 1.70 2005/03/31 02:02:52 neilc Exp $
*
*-------------------------------------------------------------------------
*/
* outer tuple; so we can stop scanning the inner scan if we matched
* on the previous try.
*/
- if (node->js.jointype == JOIN_IN &&
- node->hj_MatchedOuter)
+ if (node->js.jointype == JOIN_IN && node->hj_MatchedOuter)
node->hj_NeedNewOuter = true;
/*