MCPcopy Create free account
hub / github.com/apache/cloudberry / array_position

Function array_position

src/backend/utils/adt/array_userfuncs.c:1477–1481  ·  view source on GitHub ↗

----------------------------------------------------------------------------- * 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. *----------------------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

1475 *-----------------------------------------------------------------------------
1476 */
1477Datum
1478array_position(PG_FUNCTION_ARGS)
1479{
1480 return array_position_common(fcinfo);
1481}
1482
1483Datum
1484array_position_start(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

array_position_commonFunction · 0.85

Tested by

no test coverage detected