Re: Sequence permission suggestion

From: "Aasmund Midttun Godal" <postgresql(at)envisity(dot)com>
To: tgl(at)sss(dot)pgh(dot)pa(dot)us
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Sequence permission suggestion
Date: 2001-11-26 05:52:20
Message-ID: 20011126055220.25507.qmail@ns.krot.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I cannot argue this on a philosophical level, because I have no idea what the SQL92 papers say or don't say, and all the database books I have read generally talk very little about permissions. However allowing someone to nextval and allowing setval is to radically different things - perhaps comparable to inserting or updating a table, even though both, technically, are updates.

There are many ways to attack this issue one could have different set of permission names on a sequence than on tables and views etc. A functional and practical approach would be to do as you suggested. I would be very interested to know what philosophy there is about security in postgres in general - I have looked around on the lists but I can't find much discussion on this (except the TODO.privileges) - personally I find it an integral part of a database solution - what can be done and who can do it. If anyone can shed any light on this issue, I would greatly appreciate it!

Regards,

Aasmund

On Sun, 25 Nov 2001 20:19:22 -0500, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> "Aasmund Midttun Godal" <postgresql(at)envisity(dot)com> writes:
>
>
> It looks like an update to me; in particular, it allows you to determine
> the old state of the sequence, and thus has read+write semantics not
> only write semantics.
>
>
> This seems to be exceedingly SERIAL-centric thinking; there are other
> uses for sequences than serials.
>
> It might make sense to allow either INSERT or UPDATE permission to
> grant nextval() access, while still requiring UPDATE for setval().
> But I'm not convinced yet ...
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)

Aasmund Midttun Godal

aasmund(at)godal(dot)com - http://www.godal.com/
+47 40 45 20 46

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Kovacs Zoltan 2001-11-26 08:18:12 hu.po
Previous Message Tom Lane 2001-11-26 01:53:07 Re: Exception When Insert Followed By Delete In PL/PGSQL