Placement of block label in plpgsql block with DECLARE - Mailing list pgsql-hackers

From Tom Lane
Subject Placement of block label in plpgsql block with DECLARE
Date
Msg-id 27991.1267578883@sss.pgh.pa.us
Whole thread Raw
Responses Re: Placement of block label in plpgsql block with DECLARE
List pgsql-hackers
There's a novice question here
http://archives.postgresql.org/pgsql-novice/2010-03/msg00005.php
that shows up a problem in plpgsql's grammar.  The documentation
states that when a block is labeled, the label must precede the
DECLARE keyword if any:
http://developer.postgresql.org/pgdocs/postgres/plpgsql-structure.html
In the aforementioned question, the user tried to put the label just
before BEGIN, after some variable declarations.  So how come it didn't
throw a syntax error?  Well, when you dig into the grammar, you find out
that it contains an extremely lame attempt to allow the label to be
placed there.  The code doesn't actually work; the label is swallowed
and effectively ignored, as the user's question indicates.  Some quick
testing shows that it never has worked in any version back to 7.0, so
this isn't recent breakage.  If it did work it would create an ambiguity
because there would be multiple possible labels.  As the grammar stands
you can write
<<a>>DECLARE<<b>>x int;<<c>>BEGIN

Try to guess which label is actually active.

Rather than trying to fix this, I think we should just rip it out and
allow only the documented syntax.  Objections?
        regards, tom lane


pgsql-hackers by date:

Previous
From: "David E. Wheeler"
Date:
Subject: Re: plperl _init settings
Next
From: "David E. Wheeler"
Date:
Subject: Re: Placement of block label in plpgsql block with DECLARE