Schema | core |
Function Name | is_leap_year |
Arguments | |
Owner | postgres |
Result Type | boolean |
Description |
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$