Re: dbuser acess privileges

From: Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
To: Ron <ronljohnsonjr(at)gmail(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: dbuser acess privileges
Date: 2019-04-04 11:46:01
Message-ID: CAJCZkoKOBUh2zdYsDwpLQppAEFh5aYM=QWOW_5YMiF_u1w52yw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, Apr 4, 2019 at 4:14 PM Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
wrote:

>
>
>
> On Thu, Apr 4, 2019 at 3:55 PM Ron <ronljohnsonjr(at)gmail(dot)com> wrote:
>
>> On 4/4/19 5:07 AM, Durgamahesh Manne wrote:
>> > hi
>> > Respected international pgsql team
>> >
>> > pershing=# grant INSERT on public.hyd to ravi;
>> > GRANT
>> > i have granted insert command access to non superuser(ravi)
>> > pershing=> insert into hyd (id,name) values('2','delhi');
>> > INSERT 0 1
>> > here data inserted
>> >
>> >
>> > pershing=# grant UPDATE on public.hyd to ravi;
>> > GRANT
>> > i have granted update command access to non superuser(ravi)
>> >
>> > pershing=> update public.hyd set id = 3 where name = 'hyderabad';
>> > ERROR: permission denied for relation hyd
>> > please let me know what is the issue with update command
>>
>> Are there any triggers on public.hyd which modify other tables?
>>
>> --
>> Angular momentum makes the world go 'round.
>>
>>
>> Hi
> there are no triggers on public.hyd table
>
> Regards
> durgamahesh manne
>
>
>

Hi

i found that there was bug for grant access on update command for non
superusers

grant access on update command worked fine on 9.3 version

please i request you to fix grant access bug on update command for
nonsupeuser asap in the next pg version 10.8

Regards

durgamahesh manne

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Patrick FICHE 2019-04-04 12:25:22 RE: dbuser acess privileges
Previous Message Durgamahesh Manne 2019-04-04 10:44:54 Re: dbuser acess privileges