[HACKERS] Performance/Security question on caching function OIDs for a connection

2006-10-18 Thread Weslee Bilodeau
I'm working on my custom encryption types (as outlined in another thread) and was curious of one potential performance hit. On the input and output functions for the new type, I lookup the encrypt/decrypt functions using - FuncnameGetCandidates( list_make1( makeString( decrypt ) )

Re: [HACKERS] Performance/Security question on caching function OIDs for a connection

2006-10-18 Thread Tom Lane
Weslee Bilodeau [EMAIL PROTECTED] writes: On the input and output functions for the new type, I lookup the encrypt/decrypt functions using - FuncnameGetCandidates( list_make1( makeString( decrypt ) ) Running through the list and getting the functions OID, then calling with