| 5766 | |
| 5767 | |
| 5768 | Datum |
| 5769 | array_larger(PG_FUNCTION_ARGS) |
| 5770 | { |
| 5771 | if (array_cmp(fcinfo) > 0) |
| 5772 | PG_RETURN_DATUM(PG_GETARG_DATUM(0)); |
| 5773 | else |
| 5774 | PG_RETURN_DATUM(PG_GETARG_DATUM(1)); |
| 5775 | } |
| 5776 | |
| 5777 | Datum |
| 5778 | array_smaller(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected