| From: | Erik Wienhold <ewie(at)ewie(dot)name> |
|---|---|
| To: | Dominique Devienne <ddevienne(at)gmail(dot)com> |
| Cc: | pgsql-general(at)lists(dot)postgresql(dot)org |
| Subject: | Re: Tablespace ACLs |
| Date: | 2024-10-10 14:03:10 |
| Message-ID: | 833a8d75-09d7-4691-85bc-1ae0d16097e2@ewie.name |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
I wrote:
> On 2024-10-10 14:35 +0200, Dominique Devienne wrote:
> > On a related but different matter, is it normal not having access to a
> > single tablespace makes the whole output disappear?
> >
> > ddevienne=> \db+
> > ERROR: permission denied for tablespace hdd_data
>
> This lacks permission for executing pg_tablespace_size(). Granting
> pg_read_all_stats should be sufficient. But I agree, omitting the
> non-accessible tablespaces would be better IMO.
Maybe something along those lines:
SELECT spcname AS "Name",
pg_catalog.pg_get_userbyid(spcowner) AS "Owner",
pg_catalog.pg_tablespace_location(t.oid) AS "Location",
pg_catalog.array_to_string(spcacl, E'\n') AS "Access privileges",
spcoptions AS "Options",
pg_catalog.pg_size_pretty(pg_catalog.pg_tablespace_size(t.oid)) AS "Size",
pg_catalog.shobj_description(t.oid, 'pg_tablespace') AS "Description"
FROM pg_catalog.pg_tablespace t
LEFT JOIN pg_catalog.pg_database d
ON datname = pg_catalog.current_database()
AND dattablespace = t.oid
WHERE pg_catalog.has_tablespace_privilege(t.oid, 'CREATE')
OR pg_has_role('pg_read_all_stats', 'USAGE')
OR dattablespace IS NOT NULL -- is default tablespace?
ORDER BY 1;
--
Erik
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Erik Wienhold | 2024-10-10 14:19:14 | Re: Tablespace ACLs |
| Previous Message | Dominique Devienne | 2024-10-10 13:45:45 | Re: Tablespace ACLs |