* func_signature_string * As above, but function name is passed as a qualified name list. */
| 2082 | * As above, but function name is passed as a qualified name list. |
| 2083 | */ |
| 2084 | const char * |
| 2085 | func_signature_string(List *funcname, int nargs, |
| 2086 | List *argnames, const Oid *argtypes) |
| 2087 | { |
| 2088 | return funcname_signature_string(NameListToString(funcname), |
| 2089 | nargs, argnames, argtypes); |
| 2090 | } |
| 2091 | |
| 2092 | /* |
| 2093 | * LookupFuncNameInternal |
no test coverage detected