| 384 | } |
| 385 | |
| 386 | bool |
| 387 | gpdb::FunctionExists(Oid oid) |
| 388 | { |
| 389 | GP_WRAP_START; |
| 390 | { |
| 391 | /* catalog tables: pg_proc */ |
| 392 | return function_exists(oid); |
| 393 | } |
| 394 | GP_WRAP_END; |
| 395 | return false; |
| 396 | } |
| 397 | |
| 398 | Oid |
| 399 | gpdb::GetAggIntermediateResultType(Oid aggid) |
nothing calls this directly
no test coverage detected