| 1637 | } |
| 1638 | |
| 1639 | bool |
| 1640 | gpdb::IsOpMergeJoinable(Oid opno, Oid inputtype) |
| 1641 | { |
| 1642 | GP_WRAP_START; |
| 1643 | { |
| 1644 | /* catalog tables: pg_operator */ |
| 1645 | return op_mergejoinable(opno, inputtype); |
| 1646 | } |
| 1647 | GP_WRAP_END; |
| 1648 | return false; |
| 1649 | } |
| 1650 | |
| 1651 | bool |
| 1652 | gpdb::IsOpStrict(Oid opno) |
nothing calls this directly
no test coverage detected