Commit 5ad2499b authored by Frank Bergmann's avatar Frank Bergmann

- fixed syntax error

parent 1e0dcb98
......@@ -149,7 +149,7 @@ drop function inline_0 ();
-- it does not care about user_vacations!
create or replace function on_vacation_p (timestamptz) returns CHAR as '
DECLARE
p_vacation_until alias for $1 -- vacation_until
p_vacation_until alias for $1;
BEGIN
IF (p_vacation_until is not null) AND (p_vacation_until >= now()) THEN
RETURN ''t'';
......@@ -158,3 +158,4 @@ BEGIN
END IF;
END;' language 'plpgsql';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment