Re: PL/pgSQL 'i = i + 1' Syntax - Mailing list pgsql-hackers

From Douglas McNaught
Subject Re: PL/pgSQL 'i = i + 1' Syntax
Date
Msg-id 87hd3mj197.fsf@suzuka.mcnaught.org
Whole thread Raw
In response to Re: PL/pgSQL 'i = i + 1' Syntax  (Mark Dilger <pgsql@markdilger.com>)
Responses Re: PL/pgSQL 'i = i + 1' Syntax  (Mark Dilger <pgsql@markdilger.com>)
Re: PL/pgSQL 'i = i + 1' Syntax  ("Jim C. Nasby" <jnasby@pervasive.com>)
List pgsql-hackers
Mark Dilger <pgsql@markdilger.com> writes:

> Tom Lane wrote:
>> No it isn't.  The plpgsql scanner treats := and = as *the same token*.
>> They can be interchanged freely.  This has nothing to do with the case
>> of modifying a loop variable in particular.
>
> I disagree.  If the scanner treated them the same, then
>
>   if i := 1 then ...
>
> would work, but it doesn't.  The := is rejected in a conditional.  Try the
> following code if you don't believe me:

That's because (AIUI) all expressions to be evaluated are handed off
to the SQL parser (why re-implement all that logic and have subtle and
annoying differences?)  plpgsql only handles the statements, loops, etc.
So it doesn't care about the difference but SQL does...

Not that I claim that makes sense.  :)

-Doug


pgsql-hackers by date:

Previous
From: Marc Munro
Date:
Subject: New feature proposal
Next
From: Mark Dilger
Date:
Subject: Re: PL/pgSQL 'i = i + 1' Syntax