diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2015-06-15 23:21:03 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2015-06-15 23:21:03 -0400 |
commit | 41d798a139b5c94ad8ce10b192141b5bcc03dda3 (patch) | |
tree | 606c83d1d9b1b859f9ed129ae09ea9d855b956c1 /src | |
parent | 94a484222caece19e381a6941b8d826027ac2e75 (diff) | |
download | postgresql-41d798a139b5c94ad8ce10b192141b5bcc03dda3.tar.gz postgresql-41d798a139b5c94ad8ce10b192141b5bcc03dda3.zip |
Fix comment in fmgr.h to refer to actual function used.
FunctionLookup() is long gone if it ever existed, and fmgr_info() is
what's now used, so the comments now reflect that.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/fmgr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/fmgr.h b/src/include/fmgr.h index 4e8f68c7ceb..808d142bd4a 100644 --- a/src/include/fmgr.h +++ b/src/include/fmgr.h @@ -505,9 +505,9 @@ extern Datum FunctionCall9Coll(FmgrInfo *flinfo, Oid collation, /* These are for invocation of a function identified by OID with a * directly-computed parameter list. Note that neither arguments nor result - * are allowed to be NULL. These are essentially FunctionLookup() followed - * by FunctionCallN(). If the same function is to be invoked repeatedly, - * do the FunctionLookup() once and then use FunctionCallN(). + * are allowed to be NULL. These are essentially fmgr_info() followed by + * FunctionCallN(). If the same function is to be invoked repeatedly, do the + * fmgr_info() once and then use FunctionCallN(). */ extern Datum OidFunctionCall0Coll(Oid functionId, Oid collation); extern Datum OidFunctionCall1Coll(Oid functionId, Oid collation, |