Annotation: assert.ok

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

Information: assert.ok

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

Implementation: assert.ok

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