diff options
author | Robert Haas | 2022-05-11 19:27:33 +0000 |
---|---|---|
committer | Robert Haas | 2022-05-11 19:30:30 +0000 |
commit | ab02d702ef08343fba30d90fdf7df5950063e8c9 (patch) | |
tree | 598702d234a64298236fc7ab028b256c18b766fa /src/include | |
parent | 78ccd6cca48dab098fcce62528c2b471f7a0010a (diff) |
Remove non-functional code for unloading loadable modules.
The code for unloading a library has been commented-out for over 12
years, ever since commit 602a9ef5a7c60151e10293ae3c4bb3fbb0132d03, and we're
no closer to supporting it now than we were back then.
Nathan Bossart, reviewed by Michael Paquier and by me.
Discussion: http://postgr.es/m/Ynsc9bRL1caUSBSE@paquier.xyz
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/fmgr.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/fmgr.h b/src/include/fmgr.h index a1cf4bd646e..d55abc5414d 100644 --- a/src/include/fmgr.h +++ b/src/include/fmgr.h @@ -705,7 +705,6 @@ extern bytea *OidSendFunctionCall(Oid functionId, Datum val); * Routines in fmgr.c */ extern const Pg_finfo_record *fetch_finfo_record(void *filehandle, const char *funcname); -extern void clear_external_function_hash(void *filehandle); extern Oid fmgr_internal_function(const char *proname); extern Oid get_fn_expr_rettype(FmgrInfo *flinfo); extern Oid get_fn_expr_argtype(FmgrInfo *flinfo, int argnum); |