Provide a namespace.c function for lookup of an operator with exact

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

Commit: a65a49429f1a6722a6be4a9784b4e08fab8ca380
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2006-05-01T23:22:43Z
Releases: 8.2.0
Provide a namespace.c function for lookup of an operator with exact
input datatypes given, and use this before trying OpernameGetCandidates.
This is faster than the old method when there's an exact match, and it
does not seem materially slower when there's not.  And it definitely
makes some of the callers cleaner, because they didn't really want to
know about a list of candidates anyway.  Per discussion with Atsushi Ogawa.

Files