Re: plpgsql: Is ELSE IF supported or not? - Mailing list pgsql-hackers

From Pavel Stehule
Subject Re: plpgsql: Is ELSE IF supported or not?
Date
Msg-id 162867790806260414h566d25e6ua664413deffe155f@mail.gmail.com
Whole thread Raw
In response to plpgsql: Is ELSE IF supported or not?  ("Marko Kreen" <markokr@gmail.com>)
Responses Re: plpgsql: Is ELSE IF supported or not?  ("Marko Kreen" <markokr@gmail.com>)
List pgsql-hackers
hello

2008/6/26 Marko Kreen <markokr@gmail.com>:
> 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;

use elseif or elsif :)

Pavel

>
> Version 8.3.3.
>
> --
> marko
>
> --
> Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-hackers
>


pgsql-hackers by date:

Previous
From: "Marko Kreen"
Date:
Subject: plpgsql: Is ELSE IF supported or not?
Next
From: "Marko Kreen"
Date:
Subject: Re: plpgsql: Is ELSE IF supported or not?