Re: [BUGS] BUG #14649: Function Namespace Resolution Bug

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUGS] BUG #14649: Function Namespace Resolution Bug
Дата
Msg-id 5732.1494615050@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [BUGS] BUG #14649: Function Namespace Resolution Bug  (Jeremy Cowgar <jeremy@cowgar.com>)
Ответы Re: [BUGS] BUG #14649: Function Namespace Resolution Bug
Список pgsql-bugs
Jeremy Cowgar <jeremy@cowgar.com> writes:
> Why does it find the initial function just fine in the public namespace, but the method it calls it can not find,
whichis in the same namespace as the calling function? 

pg_dump is smart enough to schema-qualify that one.  If you look at
the actual dump output for the table, it looks like

SET search_path = g, pg_catalog;
...
CREATE TABLE people (   id integer NOT NULL,   name character varying(50) NOT NULL,   CONSTRAINT people_name_check
CHECK(public.has_content((name)::text)) 
);

However, editing the body text of your function is beyond pg_dump's
competence.
        regards, tom lane


--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

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

Предыдущее
От: Jeremy Cowgar
Дата:
Сообщение: Re: [BUGS] BUG #14649: Function Namespace Resolution Bug
Следующее
От: Jeremy Cowgar
Дата:
Сообщение: Re: [BUGS] BUG #14649: Function Namespace Resolution Bug