diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-24 03:29:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-24 03:29:15 +0000 |
commit | 782c16c6a154e760bf1608d633488538cd52da93 (patch) | |
tree | 902da787593da21a979bd2f74b0b44acf9c427b0 /src/backend/executor/nodeHash.c | |
parent | 87523ab8db34859ae3fb980a3fab9f29dfc4c97a (diff) | |
download | postgresql-782c16c6a154e760bf1608d633488538cd52da93.tar.gz postgresql-782c16c6a154e760bf1608d633488538cd52da93.zip |
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.
Diffstat (limited to 'src/backend/executor/nodeHash.c')
-rw-r--r-- | src/backend/executor/nodeHash.c | 6 |
1 files changed, 2 insertions, 4 deletions
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 |