"and then" / "or else" - Mailing list pgsql-general

From Christian Schröder
Subject "and then" / "or else"
Date
Msg-id 473EAC14.2010706@deriva.de
Whole thread Raw
Responses Re: "and then" / "or else"  (Michael Glaesemann <grzm@seespotcode.net>)
List pgsql-general
Hi list,
the logical operators "and" and "or" are commutative, i.e. there is no
"short-circuiting". Especially when doing PL/pgSQL development it would
sometimes be very handy to have this short circuiting. Unfortunately,
the trick from the docs (chapter 4.2.12) using "case ... then" does not
work inside an "if" statement (the "then" of the "case" is interpreted
as belonging to the "if" and thus leads to a syntax error).
Of course, I can sometimes use nested "if" statements, but that doesn't
always meet the logical requirements and leads to less readable code.
Some programming languages (e.g. Eiffel) know the operators "and then"
and "or else" which explicitly are "short-circuited". Would it be
possible to add these operators to PostgreSQL in general or at least to
the PL/pgSQL syntax?

Regards,
    Christian

--
Deriva GmbH                         Tel.: +49 551 489500-42
Financial IT and Consulting         Fax:  +49 551 489500-91
Hans-Böckler-Straße 2                  http://www.deriva.de
D-37079 Göttingen

Deriva CA Certificate: http://www.deriva.de/deriva-ca.cer


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: pg_dump not including custom CAST?
Next
From: Michael Glaesemann
Date:
Subject: Re: "and then" / "or else"