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

Function plunit_assert_not_null

gpcontrib/orafce/plunit.c:155–159  ·  view source on GitHub ↗

* plunit.assert_not_null * plunit.assert_not_null_message * * Syntax: * PROCEDURE assert_not_null(actual anyelement, message varchar default ''); * * Purpose: * Asserts that the actual isn't 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

153 *
154 ****************************************************************/
155Datum
156plunit_assert_not_null(PG_FUNCTION_ARGS)
157{
158 return plunit_assert_not_null_message(fcinfo);
159}
160
161Datum
162plunit_assert_not_null_message(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected