Re: allowed variable names in functions? - Mailing list pgsql-general

From Pavel Stehule
Subject Re: allowed variable names in functions?
Date
Msg-id 162867790806300330g40d362c8xcd82fe1a5d6996ee@mail.gmail.com
Whole thread Raw
In response to allowed variable names in functions?  ("A B" <gentosaker@gmail.com>)
Responses Re: allowed variable names in functions?  ("A B" <gentosaker@gmail.com>)
List pgsql-general
Hello

it works in my 8.1

postgres=# CREATE LANGUAGE plpgsql;
CREATE LANGUAGE
postgres=# create or replace function foo(a int) returns void as
$$declare c2 real; c2div real; begin c2div := 10.9; end; $$ language
plpgsql;
CREATE FUNCTION
postgres=# select foo(10);
 foo
-----

(1 row)
Regards
Pavel Stehule

2008/6/30 A B <gentosaker@gmail.com>:
> Hello.
> I suspect that in a  plpgsql function
>
> DECLARE
> c2 REAL;
> cadiv REAL;
>
> works but
>
> c2 REAL;
> c2div REAL;
>
> doesn't.
>
> Is this true, and if so, what are the rules for the names in the
> function? I use 8.1.
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

pgsql-general by date:

Previous
From: "A B"
Date:
Subject: allowed variable names in functions?
Next
From: "A B"
Date:
Subject: Re: allowed variable names in functions?