GRANT permissions on views have no effect; \dv reports nothing - Mailing list pgsql-bugs

From pgsql-bugs@postgresql.org
Subject GRANT permissions on views have no effect; \dv reports nothing
Date
Msg-id 200105160047.f4G0l3Q56397@hub.org
Whole thread Raw
Responses Re: GRANT permissions on views have no effect; \dv reports nothing  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
Kristis Makris (kristis dot makris at datasoft dot com) reports a bug with a severity of 1
The lower the number the more severe it is.

Short Description
GRANT permissions on views have no effect; \dv reports nothing

Long Description
I run a bunch if GRANT statements on tables/views/sequences. The permissions set on teh tables/sequences go in effect
correctly.All the grant permissions performed on the views have no effect. 

Doing a "\dp" within the pgsql tool does not even list the views, while the permissions on the tables/sequences are
listed,even if there aren't any. 

Also, doing a "\dv" within the pgsql tool does not list any views at all; it reports: "No relations found."

The views are not listed as relations anywhere, yet they are executed properly

Sample Code
perms=# create view test AS SELECT 'hi'::text AS RESULT;
CREATE
perms=# \dv
No relations found.
perms=# select * from test;
 result
--------
 hi
(1 row)

perms=# \dp
Access permissions for database "perms"
 Relation | Access permissions
----------+--------------------
(0 rows)

perms=# grant all ON test TO public;
CHANGE
perms=# \dp
Access permissions for database "perms"
 Relation | Access permissions
----------+--------------------
(0 rows)

perms=# \dv
No relations found.
perms=# create table testtable(id int4);
CREATE
perms=# \dp
Access permissions for database "perms"
 Relation  | Access permissions
-----------+--------------------
 testtable |
(1 row)

perms=# grant all on testtable to public;
CHANGE
perms=# \dp
Access permissions for database "perms"
 Relation  |    Access permissions
-----------+---------------------------
 testtable | {"=arwR","postgres=arwR"}
(1 row)

perms=# grant all ON test TO public;
CHANGE
perms=# \dp
Access permissions for database "perms"
 Relation  |    Access permissions
-----------+---------------------------
 testtable | {"=arwR","postgres=arwR"}
(1 row)



No file was uploaded with this report

pgsql-bugs by date:

Previous
From: Chris Storah
Date:
Subject: Re: socket slowdown using libpg and 7.1.1 ?
Next
From: Tom Lane
Date:
Subject: Re: GRANT permissions on views have no effect; \dv reports nothing