Re: Granting permission on a sequence to a group - Mailing list pgsql-novice

From Walker, Jed S
Subject Re: Granting permission on a sequence to a group
Date
Msg-id 41669DC6FE3B80449A33A4DD46DB370A09E7EAFE@entcoexch15.broadband.att.com
Whole thread Raw
In response to Granting permission on a sequence to a group  ("Walker, Jed S" <Jed_Walker@cable.comcast.com>)
List pgsql-novice
That seems like a good way to handle it. Thanks for the info!

-----Original Message-----
From: Bruno Wolff III [mailto:bruno@wolff.to]
Sent: Friday, April 22, 2005 9:14 AM
To: Walker, Jed S
Cc: 'pgsql-novice@postgresql.org'
Subject: Re: Granting permission on a sequence to a group

On Fri, Apr 22, 2005 at 08:29:35 -0600,
  "Walker, Jed S" <Jed_Walker@cable.comcast.com> wrote:
> correct way to do this I'd appreciate it.
>
> Since a sequence in postgres is actually a table, I realized that to
> pull a value off and have it increment you must be able to update the
> table. So I granted select and update on the sequence to the group,
> and now the user's in the group are able to use nextval().
>
> Is this definitely the correct way to handle this?
>
> The thing I really don't like about this is that now the user's in
> that group can perform setval() on the sequence! That's seem like a big
risk.
>
> If someone can confirm my solution or give me the proper way to do
> this I would greatly appreciate it.

This has been discussed in the past. My memory is that people were amenable
to using INSERT to give access to nextval and UPDATE to give access to
setval. But I don't think anyone volunteered to do this.

pgsql-novice by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: CHECK Constraints
Next
From: "Van Ingen, Lane"
Date:
Subject: Re: CHECK Constraints