diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-08-26 14:32:40 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-08-26 14:32:48 -0400 |
commit | 348778ddbc75eddaa7f9c7ce5b6adad8ada564e4 (patch) | |
tree | 603b92231dae15e74fdb8a7ec318a4429d7d7c9e /src | |
parent | f2690338814738967d75cc1e35cc1cfac1a40710 (diff) | |
download | postgresql-348778ddbc75eddaa7f9c7ce5b6adad8ada564e4.tar.gz postgresql-348778ddbc75eddaa7f9c7ce5b6adad8ada564e4.zip |
Make comment in fmgr.h match the one in fmgr.c.
Incompletely quoting an API spec does nobody any good. Noted by
Paul Jungwirth. Looks like the discrepancy was my fault originally :-(
Discussion: https://postgr.es/m/CA+renyU_J8TU_d3Kr0PkuOgFbpypextendu7a+_d5NOfVdvDeA@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/include/fmgr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/fmgr.h b/src/include/fmgr.h index 3ff099986b8..29ae4674cc7 100644 --- a/src/include/fmgr.h +++ b/src/include/fmgr.h @@ -489,7 +489,8 @@ extern int no_such_variable /* These are for invocation of a specifically named function with a * directly-computed parameter list. Note that neither arguments nor result - * are allowed to be NULL. + * are allowed to be NULL. Also, the function cannot be one that needs to + * look at FmgrInfo, since there won't be any. */ extern Datum DirectFunctionCall1Coll(PGFunction func, Oid collation, Datum arg1); |