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

Function plunit_assert_false

gpcontrib/orafce/plunit.c:88–92  ·  view source on GitHub ↗

* plunit.assert_false * plunit.assert_false_message * * Syntax: * PROCEDURE assert_false(condition boolean, message varchar default ''); * * Purpose: * Asserts that the condition is false. 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

86 *
87 ****************************************************************/
88Datum
89plunit_assert_false(PG_FUNCTION_ARGS)
90{
91 return plunit_assert_false_message(fcinfo);
92}
93
94Datum
95plunit_assert_false_message(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected