Re: Setting search paths inside a function (plpgsql)

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Setting search paths inside a function (plpgsql)
Дата
Msg-id 29493.1096472430@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Setting search paths inside a function (plpgsql)  ("Gregory S. Williamson" <gsw@globexplorer.com>)
Список pgsql-general
"Gregory S. Williamson" <gsw@globexplorer.com> writes:
>         RAISE NOTICE ''doing name search for fips %'',p_fips;
>         env_str := ''SET search_path TO f'' || p_fips || '',public'';
>         EXECUTE env_str;
>         RAISE NOTICE ''did exec of <%>'',env_str;
>         FOR retrec IN
>                 SELECT o.gid,o.s_fips_cou,o.s_zip,o.s_ownername
>                 FROM parcel_owners o, parcel_owner_fti f
>                 WHERE f.string = p_srchstr AND f.id = o.orig_id ORDER BY 2,3,4
>                         LOOP

You'd have to use FOR-IN-EXECUTE to make this work the way you are
expecting.  As is, the plan for the SELECT is generated and cached
the first time through, and in the process the table references are
bound to specific tables in specific schemas.

            regards, tom lane

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

Предыдущее
От: "Jonathan Villa"
Дата:
Сообщение: Converting to Java date example
Следующее
От: "Net Virtual Mailing Lists"
Дата:
Сообщение: Re: Postgres inherited table, some questions...