Thread: pgsql-server/src backend/utils/fmgr/dfmgr.c ba ...

pgsql-server/src backend/utils/fmgr/dfmgr.c ba ...

From
tgl@svr1.postgresql.org (Tom Lane)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@svr1.postgresql.org    04/01/18 22:06:42

Modified files:
    src/backend/utils/fmgr: dfmgr.c fmgr.c
    src/include    : fmgr.h

Log message:
    Add a hash table to cache lookups of 'C'-language functions (that is,
    dynamically loaded C functions).  Some limited testing suggests that
    this puts the lookup speed for external functions just about on par
    with built-in functions.  Per discussion with Eric Ridge.