Remove fastpath.c's lame attempt at caching function lookup info across

Tom Lane <tgl@sss.pgh.pa.us>

Commit: a51ec450ff6d9a6c8ebd2213ae96f6f14b5d0f63
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2001-06-01T15:45:42Z
Releases: 7.2.1
Remove fastpath.c's lame attempt at caching function lookup info across
calls.  This has never actually cached anything, because postgres.c does
each fastpath call as a separate transaction command, and so fastpath.c
would always decide that its cache was outdated.  If it had worked, it
would now be failing for calls of oldstyle functions due to dangling
pointers in the FmgrInfo struct.  Rip it out for simplicity and bug-
proofing.

Files

PathChange+/−
src/backend/tcop/fastpath.c modified +30 −97
src/include/tcop/fastpath.h modified +1 −14