----------------------------------------------------------------------------- * array_position, array_position_start : * return the offset of a value in an array. * * IS NOT DISTINCT FROM semantics are used for comparisons. Return NULL when * the value is not found. *----------------------------------------------------------------------------- */
| 1475 | *----------------------------------------------------------------------------- |
| 1476 | */ |
| 1477 | Datum |
| 1478 | array_position(PG_FUNCTION_ARGS) |
| 1479 | { |
| 1480 | return array_position_common(fcinfo); |
| 1481 | } |
| 1482 | |
| 1483 | Datum |
| 1484 | array_position_start(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected