From: | Noah Misch <noah(at)leadboat(dot)com> |
---|---|
To: | Stephen Frost <sfrost(at)snowman(dot)net> |
Cc: | Fujii Masao <masao(dot)fujii(at)gmail(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Peter Eisentraut <peter_e(at)gmx(dot)net>, Adam Brightwell <adam(dot)brightwell(at)crunchydatasolutions(dot)com>, Andrew Dunstan <andrew(at)dunslane(dot)net>, Petr Jelinek <petr(at)2ndquadrant(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Default Roles (was: Additional role attributes) |
Date: | 2016-04-05 02:31:38 |
Message-ID: | 20160405023138.GA1641028@tornado.leadboat.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Sun, Apr 03, 2016 at 10:27:02PM -0400, Stephen Frost wrote:
> * Fujii Masao (masao(dot)fujii(at)gmail(dot)com) wrote:
> > Currently only superusers can call pgstattuple().
>
> I started looking into this.
>
> If we were starting from a green field, the pg_dump dump catalog ACLs
> patch would work just fine for this case. Simply remove the superuser
> checks and REVOKE EXECUTE from public in the script and we're done.
>
> Unfortunately, we aren't, and that's where things get complicated. The
> usual pg_upgrade case will, quite correctly, dump out the objects
> exactly as they exist from the 9.5-or-earlier system and restore them
> into the 9.6 system, however, the new .so will be installed and that .so
> won't have the superuser checks in it.
>
> The only approach to addressing this which I can think of offhand would
> be to have the new .so library check the version of the extension and,
> for the 1.3 (pre-9.6) and previous versions, keep the superuser check,
> but skip it for 1.4 (9.6) and later versions.
At the C level, have a pgstattuple function and a pgstattuple_v1_4 function.
Let them differ only in that the former has a superuser check. Binary
upgrades will use the former, and fresh CREATE EXTENSION shall use the latter.
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2016-04-05 02:35:36 | Re: oversight in parallel aggregate |
Previous Message | David Rowley | 2016-04-05 02:26:08 | Re: oversight in parallel aggregate |