Re: expression evaluation with expected datatypes

Поиск
Список
Период
Сортировка
От Dimitri Fontaine
Тема Re: expression evaluation with expected datatypes
Дата
Msg-id m2liirkfbu.fsf@2ndQuadrant.fr
обсуждение исходный текст
Ответ на expression evaluation with expected datatypes  (Pavel Stehule <pavel.stehule@gmail.com>)
Ответы Re: expression evaluation with expected datatypes  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: expression evaluation with expected datatypes  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Pavel Stehule <pavel.stehule@gmail.com> writes:
> When I worked on parametrised DO statement, I had to solve following issue:

DO currently is a utility command, not a query. Do you mean to change
that?

Also, did you think about a lambda construct, which is basically
allowing functions to be defined inline in a query?

We could imagine several syntax to show up the idea, common keywords
here include LAMBDA, FLET or LABELS, but I think that expanding WITH
would be preferable for us.
 WITH FUNCTION foo(param list) returns rettype language foo AS (   definition here ) <query using foo() here>;

Other WITH extensions we can think about include support for DCL as
asked by David Fetter in the past already, and support for variables too
(a kind of per-query SET LOCAL).

I don't see how adding parameters and return values to utility commands
is going to be easier than adding a "lambda" facility.

Regards,
-- 
Dimitri Fontaine
http://2ndQuadrant.fr     PostgreSQL : Expertise, Formation et Support


В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Colin 't Hart"
Дата:
Сообщение: [PATCH] psql \n shortcut for set search_path =
Следующее
От: Dimitri Fontaine
Дата:
Сообщение: Re: pg_prewarm