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

Function plunit_assert_null

gpcontrib/orafce/plunit.c:122–126  ·  view source on GitHub ↗

* plunit.assert_null * plunit.assert_null_message * * Syntax: * PROCEDURE assert_null(actual anyelement, message varchar default ''); * * Purpose: * Asserts that the actual is null. The optional message will be * displayed if the assertion fails. If not supplied, a default message * is displayed. * ****************************************************************/

Source from the content-addressed store, hash-verified

120 *
121 ****************************************************************/
122Datum
123plunit_assert_null(PG_FUNCTION_ARGS)
124{
125 return plunit_assert_null_message(fcinfo);
126}
127
128Datum
129plunit_assert_null_message(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected