Is there a GoTo ?

Поиск
Список
Период
Сортировка
От İlyas Derse
Тема Is there a GoTo ?
Дата
Msg-id CALcdmyRoL87r4H074joV4ryA3tYO+dbKr6AEocwAt9wOe52iDQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: Is there a GoTo ?  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: Is there a GoTo ?  (Adrian Klaver <adrian.klaver@aklaver.com>)
Re: Is there a GoTo ?  (Justin <zzzzz.graf@gmail.com>)
Список pgsql-general
In this function I have to GOTO to a label1, but GOTO keyword is not working, can you please help me in getting the way from which I am able to jump from a particular code to label.
 Thanks...

CREATE OR REPLACE FUNCTION test(i integer) RETURNS integer AS $$
BEGIN
IF i<0 THEN 
RETURN i + 1;
ELSE GOTO label1;
END IF
<<label1>>
RETURN null;
END;
$$ LANGUAGE plpgsql;

В списке pgsql-general по дате отправления:

Предыдущее
От: "Werner Kuhnle"
Дата:
Сообщение: Re-2: Problem with SqlState=23505 when inserting rows
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: Is there a GoTo ?