| 1549 | } |
| 1550 | |
| 1551 | Node * |
| 1552 | gpdb::GetTypeDefault(Oid typid) |
| 1553 | { |
| 1554 | GP_WRAP_START; |
| 1555 | { |
| 1556 | /* catalog tables: pg_type */ |
| 1557 | return get_typdefault(typid); |
| 1558 | } |
| 1559 | GP_WRAP_END; |
| 1560 | return nullptr; |
| 1561 | } |
| 1562 | |
| 1563 | |
| 1564 | double |
nothing calls this directly
no test coverage detected