答复: [ADMIN] sql to grant privilege on sequence - Mailing list pgsql-admin

From liuyuanyuan
Subject 答复: [ADMIN] sql to grant privilege on sequence
Date
Msg-id 020f01cf9f46$5fff2ec0$1ffd8c40$@gmail.com
Whole thread Raw
In response to Re: sql to grant privilege on sequence  (Guillaume Lelarge <guillaume@lelarge.info>)
Responses Re: 答复: [ADMIN] sql to grant privilege on sequence  (Guillaume Lelarge <guillaume@lelarge.info>)
List pgsql-admin

Thanks Guillaume! Thanks for your reply !

 

Now that, I got the reason.

I knew  GRANT ON TABLE still works for sequence, but I think use GRANT ON SEQUENCE

in pgAdmin3 of newer version maybe much better. Because GRANT ON SEQUENCE is more clear,

and maybe that’s why developers create this syntax especially for sequence.

That’s only a suggestion, looking forward to hearing from you later~~

 

Regards !

Yours,

Jasmine

 

 

发件人: Guillaume Lelarge [mailto:guillaume@lelarge.info]
发送时间: 2014714 16:50
收件人: liuyuanyuan
抄送: pgsql-admin@postgresql.org
主题: Re: [ADMIN] sql to grant privilege on sequence

 

Le 14 juil. 2014 08:20, "liuyuanyuan" <liuyuanyuangogo@gmail.com> a écrit :
>
> Hi, Hackers!
>
> I got a question about sequence SQL of pgadmin3 , such as pgAdmin3 of PostgreSQL9.3.
>
> I found when I GRANT privilege on sequence by pgAdmin3 tool, it’s always show me sql like:
>
> GRANT SELECT, UPDATE ON TABLE sequence_name TO ….
>
> Rather than:
>
> GRANT SELECT, UPDATE ON SEQUENCE sequence_name TO ….
>
>  
>
> For example:
>
> When I use pgAdmin3 TO create a sequence, I input SEQUENCE NAME – seq1 ,and add privilege SELECT to public,
>
> Then the SQL shows: GRANT .. ON TABLE …
>
>  
>
>  
>
> I checked the documentation of PostgreSQL 9.3 (see http://www.postgresql.org/docs/9.3/interactive/sql-grant.html),
>
> Then I know the privileges grant on sequence are only a part of that on table.
>
> Then I want to know, why to use GRANT ON TABLE ? why not to use GRANT ON SEQUENCE ?
>

Because that was the way to do it before 8.2 iirc. And it still works. Nevertheless I'll look into it.

pgsql-admin by date:

Previous
From: Guillaume Lelarge
Date:
Subject: Re: sql to grant privilege on sequence
Next
From: John Scalia
Date:
Subject: Re: WAL segment management on a standby