permissions PB - Mailing list pgsql-novice

From Jean-Yves F. Barbier
Subject permissions PB
Date
Msg-id 20110614023929.49b658df@anubis.defcon1
Whole thread Raw
Responses Re: permissions PB [SOLVED]  ("Jean-Yves F. Barbier" <12ukwn@gmail.com>)
List pgsql-novice
Hi list,

The DB owner created a function as:
CREATE FUNCTION mysch.testaddint(int, int)
RETURNS int AS $$ SELECT $1+$2 $$LANGUAGE sql;

When usr1 is granted usage on domain mysch he can execute this function.
(which is strange as owner didn't grant execute on this fnct,
 I guess this is default behavior and thus ok.)

Until here, almost no PB, but after owner's:
REVOKE ALL ON FUNCTION mysch.testaddint(int, int) FROM usr1;

usr1 still can execute the function!? (#@<!>&)

Did I missed something somewhere?

JY
--
Brain damage is all in your head.
        -- Karl Lehenbauer

pgsql-novice by date:

Previous
From: "Jean-Yves F. Barbier"
Date:
Subject: Re: how to recover a domain types and constraints? [SOLVED]
Next
From: "Jean-Yves F. Barbier"
Date:
Subject: Re: permissions PB [SOLVED]