Annotation: core.is_leap_year

CREATE OR REPLACE FUNCTION core.is_leap_year()
RETURNS boolean

Information: core.is_leap_year

Schema core
Function Name is_leap_year
Arguments
Owner postgres
Result Type boolean
Description

Implementation: core.is_leap_year

CREATE OR REPLACE FUNCTION core.is_leap_year()
 RETURNS boolean
 LANGUAGE plpgsql
 IMMUTABLE STRICT
AS $function$
BEGIN
    RETURN core.is_leap_year(core.get_current_year());
END
$function$