Re: setting time zone in a function

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: setting time zone in a function
Дата
Msg-id 31601.1461246461@sss.pgh.pa.us
обсуждение исходный текст
Ответ на setting time zone in a function  (Steve Rogerson <steve.pg@yewtc.demon.co.uk>)
Ответы Re: setting time zone in a function  (Steve Rogerson <steve.pg@yewtc.demon.co.uk>)
Список pgsql-general
Steve Rogerson <steve.pg@yewtc.demon.co.uk> writes:
> I want the time zone if a function  a bit like ...
> CREATE OR REPLACE FUNCTION
>    short_name (timestamp with time zone, varchar) RETURNS varchar  AS $$
>     DECLARE
>         ...
>     BEGIN
>         SET LOCAL TIME ZONE $2;

Nope, that won't work: in general you can't put parameters into
utility commands.  Use set_config():

    PERFORM set_config('timezone', $2, true);

Also, I think "SET LOCAL" has transaction duration, not function duration,
so you're going to have to work harder than this if you want the setting
to be local to this function.  SET LOCAL/set_config(true) inside an
exception block might work --- and you may well want an exception block
anyway, to trap bad timezone names.  Or you could explicitly save and
restore the previous setting, which is more code but might be faster
than an exception block.

            regards, tom lane


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

Предыдущее
От: Melvin Davidson
Дата:
Сообщение: Re: Add relcreated (timestamp) column to pg_class catalog to record the time an object was created
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: error while installing auto_explain contrib module