Re: odd alter_generic regression failures

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: odd alter_generic regression failures
Дата
Msg-id 10108.1350314965@sss.pgh.pa.us
обсуждение исходный текст
Ответ на odd alter_generic regression failures  (Andrew Dunstan <andrew@dunslane.net>)
Список pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> We seem to have an intermittent failure on the alter_generic tests that 
> look like this:

>        SET SESSION AUTHORIZATION regtest_alter_user1;
>        CREATE FUNCTION alt_func1(int) RETURNS int LANGUAGE sql
>          AS 'SELECT $1 + 1';
>     + ERROR:  permission denied for language sql
>        CREATE FUNCTION alt_func2(int) RETURNS int LANGUAGE sql
>          AS 'SELECT $1 - 1';
>     + ERROR:  permission denied for language sql
>        CREATE AGGREGATE alt_agg1 (
>          sfunc1 = int4pl, basetype = int4, stype1 = int4, initcond = 0
>        );

I poked around and realized that the reason for this is that it's run in
parallel with the "privileges" test, which does:

REVOKE ALL PRIVILEGES ON LANGUAGE sql FROM PUBLIC;
... various stuff ...
GRANT ALL PRIVILEGES ON LANGUAGE sql TO PUBLIC;

So the current placement of that test is no better than the original :-(
I'll put it someplace else.
        regards, tom lane



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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Re: Deprecating RULES
Следующее
От: Hannu Krosing
Дата:
Сообщение: Re: Deprecating RULES