Need help understanding has_function_privilege - Mailing list pgsql-general

From Cosimo Simeone
Subject Need help understanding has_function_privilege
Date
Msg-id CAD1W9HXMUZ6mjBVhNQJGqLQkMnyQAc28OAqvCEpZ_rOEH=eDfw@mail.gmail.com
Whole thread Raw
Responses Re: Need help understanding has_function_privilege
Re: Need help understanding has_function_privilege
List pgsql-general
Hi!
I'd need help understanding what i am doing wrong...

Where am I:
=# \c
psql (15.8 (Homebrew), server 14.15 (Debian 14.15-1.pgdg120+1))
You are now connected to database "postgres" as user "postgres".

Init:
=# create role my_user;
=# create schema my_schema;
=# create function my_schema.my_func(p1 text) returns integer as $$select 1::integer;$$ language sql;

It works...
=#  select my_schema.my_func('x');
 my_func
---------
       1

Now, the controversial part:
=# SELECT has_function_privilege('my_user', 'my_schema.my_func(text)', 'execute');
 has_function_privilege
------------------------
 t

true?
Well... Ok, "whatever"... I revoke it:
=# revoke execute on function my_schema.my_func(text) from my_user;
REVOKE

But still:
=# select has_function_privilege('my_user', 'my_schema.my_func(text)', 'execute');
 has_function_privilege
------------------------
 t

What am I doing wrong? :-)

Thanks for help!

pgsql-general by date:

Previous
From: Christophe Pettus
Date:
Subject: Re: pgvector as standard PostgreSQL feature?
Next
From: Sylvain Cuaz
Date:
Subject: Re: Restoring only a subset of schemas