Re: [PATCHES] Extending grant insert on tables to sequences

2008-07-08 Thread Jaime Casanova
On 7/8/08, Alvaro Herrera <[EMAIL PROTECTED]> wrote: > Jaime Casanova escribió: > > On Thu, May 22, 2008 at 1:18 PM, Jaime Casanova <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > > > The idea of this patch is to avoid the need to make explicit grants on > > > sequences owned by tables. > > > > I've n

Re: [PATCHES] Extending grant insert on tables to sequences

2008-07-08 Thread Alvaro Herrera
Jaime Casanova escribió: > On Thu, May 22, 2008 at 1:18 PM, Jaime Casanova <[EMAIL PROTECTED]> wrote: > > Hi, > > > > The idea of this patch is to avoid the need to make explicit grants on > > sequences owned by tables. > > I've noted that the patch i attached is an older version that doesn't > co

Re: [PATCHES] Extending grant insert on tables to sequences

2008-05-29 Thread Jaime Casanova
On 5/29/08, Robert Treat <[EMAIL PROTECTED]> wrote: > On Saturday 24 May 2008 01:19:05 Jaime Casanova wrote: > > On Sat, May 24, 2008 at 12:09 AM, Alvaro Herrera > > > > <[EMAIL PROTECTED]> wrote: > > > Please add the patch to the commitfest page, > > > > Ah! I forgot we have a new process now... p

Re: [PATCHES] Extending grant insert on tables to sequences

2008-05-29 Thread Robert Treat
On Saturday 24 May 2008 01:19:05 Jaime Casanova wrote: > On Sat, May 24, 2008 at 12:09 AM, Alvaro Herrera > > <[EMAIL PROTECTED]> wrote: > > Please add the patch to the commitfest page, > > Ah! I forgot we have a new process now... patch added to the commitfest > page... > What's the use case for

Re: [PATCHES] Extending grant insert on tables to sequences

2008-05-23 Thread Alvaro Herrera
Jaime Casanova escribió: > On Thu, May 22, 2008 at 1:18 PM, Jaime Casanova <[EMAIL PROTECTED]> wrote: > > Hi, > > > > The idea of this patch is to avoid the need to make explicit grants on > > sequences owned by tables. > > > > I've noted that the patch i attached is an older version that doesn't

Re: [PATCHES] Extending grant insert on tables to sequences

2008-05-23 Thread Jaime Casanova
On Sat, May 24, 2008 at 12:09 AM, Alvaro Herrera <[EMAIL PROTECTED]> wrote: > > Please add the patch to the commitfest page, > Ah! I forgot we have a new process now... patch added to the commitfest page... -- Atentamente, Jaime Casanova Soporte y capacitación de PostgreSQL Guayaquil - Ecuador C

Re: [PATCHES] Extending grant insert on tables to sequences

2008-05-23 Thread Jaime Casanova
On Thu, May 22, 2008 at 1:18 PM, Jaime Casanova <[EMAIL PROTECTED]> wrote: > Hi, > > The idea of this patch is to avoid the need to make explicit grants on > sequences owned by tables. > I've noted that the patch i attached is an older version that doesn't compile because of a typo... Re-attaching

[PATCHES] Extending grant insert on tables to sequences

2008-05-22 Thread Jaime Casanova
Hi, The idea of this patch is to avoid the need to make explicit grants on sequences owned by tables. This patch make: - GRANT INSERT ON TABLE extend to GRANT USAGE ON SEQUENCE(currval, nextval) - GRANT UPDATE ON TABLE extend to GRANT UPDATE ON SEQUENCE (nextval, setval) - GRANT SELECT ON TA