From: | Hannu Krosing <hannuk(at)google(dot)com> |
---|---|
To: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
Cc: | Michael Paquier <michael(at)paquier(dot)xyz>, Julien Rouhaud <rjuju123(at)gmail(dot)com>, Vik Fearing <vik(at)postgresfriends(dot)org>, Chapman Flack <chap(at)anastigmatix(dot)net>, Jack Christensen <jack(at)jncsoftware(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: pl/pgsql feature request: shorthand for argument and local variable references |
Date: | 2021-03-18 14:19:12 |
Message-ID: | CAMT0RQSaBJ4GgTjpLomBVvhjmsKHjVN9gZJYgz9TP6DXV83Lnw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Thu, Mar 18, 2021 at 5:27 AM Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
>
>
> There are few main reasons:
>
> a) compile options are available already - so I don't need invent new syntax - #OPTION DUMP, #PRINT_STRICT ON, #VARIABLE_CONFLICT ERROR
Are these documented anywhere ?
At least a quick search for pl/pgsql + #OPTION DUMP, #PRINT_STRICT ON,
#VARIABLE_CONFLICT ERROR returned nothing relevant and also searching
in
If pl/pgsql actually supports any of these, these should get documented!
For me the most logical place for declaring a function name alias
would be to allow ALIAS FOR the function name in DECLARE section.
plpgsql_test=# CREATE FUNCTION
a_function_with_an_inconveniently_long_name(i int , OUT o int)
LANGUAGE plpgsql AS $plpgsql$
DECLARE
fnarg ALIAS FOR a_function_with_an_inconveniently_long_name;
BEGIN
fnarg.o = 2 * fnarg.i;
END;
$plpgsql$;
but unfortunately this currently returns
ERROR: 42704: variable "a_function_with_an_inconveniently_long_name"
does not exist
LINE 4: fnarg ALIAS FOR a_function_with_an_inconveniently_long_na...
^
LOCATION: plpgsql_yyparse, pl_gram.y:677
Variation could be
DECLARE
fnarg ALIAS FOR FUNCTION a_function_with_an_inconveniently_long_name;
so it is clear that we are aliasing current function name
or even make the function name optional, as there can only be one, so
DECLARE
fnarg ALIAS FOR FUNCTION;
Cheers
Hannu
From | Date | Subject | |
---|---|---|---|
Next Message | Dilip Kumar | 2021-03-18 14:22:05 | Re: [HACKERS] Custom compression methods |
Previous Message | Bruce Momjian | 2021-03-18 14:03:52 | Re: fdatasync performance problem with large number of DB files |