aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_func.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-11-12 00:00:55 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-11-12 00:00:55 +0000
commit8bfc437301d5ac1a209349b4c9e466b798e5b90a (patch)
tree0556ffc88d7c78517ad881a9483a598ba43ed748 /src/backend/parser/parse_func.c
parent801a1acccaba8fca5ad5d09132126bd51a1dca2d (diff)
downloadpostgresql-8bfc437301d5ac1a209349b4c9e466b798e5b90a.tar.gz
postgresql-8bfc437301d5ac1a209349b4c9e466b798e5b90a.zip
Clean up a bunch of ScanKeyEntryInitialize calls that weren't bothering
to apply the proper Datum conversion macros to search key values.
Diffstat (limited to 'src/backend/parser/parse_func.c')
-rw-r--r--src/backend/parser/parse_func.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c
index 1f2887031e4..7a594df35d4 100644
--- a/src/backend/parser/parse_func.c
+++ b/src/backend/parser/parse_func.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.113 2001/11/02 16:30:29 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.114 2001/11/12 00:00:55 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -695,7 +695,7 @@ func_get_candidates(char *funcname, int nargs)
(bits16) 0x0,
(AttrNumber) Anum_pg_proc_proname,
(RegProcedure) F_NAMEEQ,
- (Datum) funcname);
+ PointerGetDatum(funcname));
idesc = index_openr(ProcedureNameIndex);