Annotation: assert.pass

CREATE OR REPLACE FUNCTION assert.pass(message text)
RETURNS text

Information: assert.pass

Schema assert
Function Name pass
Arguments message text
Owner postgres
Result Type text
Description

Implementation: assert.pass

CREATE OR REPLACE FUNCTION assert.pass(message text)
 RETURNS text
 LANGUAGE plpgsql
 IMMUTABLE STRICT
AS $function$
BEGIN
    RAISE NOTICE 'ASSERT PASSED : %', message;
    RETURN '';
END
$function$