From 782c16c6a154e760bf1608d633488538cd52da93 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 24 Aug 2000 03:29:15 +0000 Subject: SQL-language functions are now callable in ordinary fmgr contexts ... for example, an SQL function can be used in a functional index. (I make no promises about speed, but it'll work ;-).) Clean up and simplify handling of functions returning sets. --- src/backend/executor/nodeHash.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/backend/executor/nodeHash.c') diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index 682afdba4af..9cd85195cdc 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $Id: nodeHash.c,v 1.51 2000/08/22 04:06:19 tgl Exp $ + * $Id: nodeHash.c,v 1.52 2000/08/24 03:29:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -524,7 +524,6 @@ ExecHashGetBucket(HashJoinTable hashtable, int bucketno; Datum keyval; bool isNull; - bool isDone; /* ---------------- * Get the join attribute value of the tuple @@ -535,8 +534,7 @@ ExecHashGetBucket(HashJoinTable hashtable, */ ResetExprContext(econtext); - keyval = ExecEvalExprSwitchContext(hashkey, econtext, - &isNull, &isDone); + keyval = ExecEvalExprSwitchContext(hashkey, econtext, &isNull, NULL); /* ------------------ * compute the hash function -- cgit v1.2.3