| 5775 | } |
| 5776 | |
| 5777 | Datum |
| 5778 | array_smaller(PG_FUNCTION_ARGS) |
| 5779 | { |
| 5780 | if (array_cmp(fcinfo) < 0) |
| 5781 | PG_RETURN_DATUM(PG_GETARG_DATUM(0)); |
| 5782 | else |
| 5783 | PG_RETURN_DATUM(PG_GETARG_DATUM(1)); |
| 5784 | } |
| 5785 | |
| 5786 | |
| 5787 | typedef struct generate_subscripts_fctx |
nothing calls this directly
no test coverage detected