plpgsql: Is ELSE IF supported or not?

From: "Marko Kreen" <markokr(at)gmail(dot)com>
To: "Postgres Hackers" <pgsql-hackers(at)postgresql(dot)org>
Subject: plpgsql: Is ELSE IF supported or not?
Date: 2008-06-26 10:57:50
Message-ID: e51f66da0806260357s2be646cdg2aa491eceebe63d8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Docs seems to say it is, but following function fails to compile:

create function err_else() returns void as $$
begin
if 1 = 1 then
else if 1 = 2 then
end if;
end;
$$ language plpgsql;

ERROR: syntax error at or near ";"
LINE 6: end;

Version 8.3.3.

--
marko

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Pavel Stehule 2008-06-26 11:14:05 Re: plpgsql: Is ELSE IF supported or not?
Previous Message Simon Riggs 2008-06-26 10:57:07 Join Removal/ Vertical Partitioning