* function_exists * Is there a function with the given oid */
| 4082 | * Is there a function with the given oid |
| 4083 | */ |
| 4084 | bool |
| 4085 | function_exists(Oid oid) |
| 4086 | { |
| 4087 | return SearchSysCacheExists(PROCOID, oid, 0, 0, 0); |
| 4088 | } |
| 4089 | |
| 4090 | /* |
| 4091 | * aggregate_exists |
no test coverage detected