Re: bugs

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: "Alexei E(dot) Korneyev" <alexei(at)niva(dot)sposad(dot)ru>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: bugs
Date: 2000-09-06 16:35:42
Message-ID: Pine.BSF.4.10.10009060934430.89549-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


Yes, right now references constraints require update
permissions on the table being referenced in order
to grab row level locks on it with SELECT FOR UPDATE.

Stephan Szabo
sszabo(at)bigpanda(dot)com

On Thu, 31 Aug 2000, Alexei E. Korneyev wrote:

> ============================================================================
> POSTGRESQL BUG REPORT TEMPLATE
> ============================================================================
>
>
> Your name : Alexei E. Korneyev
> Your email address : alexei(at)niva(dot)sposad(dot)ru
>
>
> System Configuration
> ---------------------
> Architecture : Intel Pentium II
>
> Operating System : Linux RedHat 2.2.12
>
> PostgreSQL version : PostgreSQL-7.0.2
>
> Compiler used : uncnown Build Host: utility.wgcr.org
>
>
> Please enter a FULL description of your problem:
> ------------------------------------------------
> i create this:
>
> ------------------------
> create table "users" (
> name varchar(10) PRIMARY KEY
> );
> create table "stat" (
> peername varchar(10) REFERENCES users(name)
> );
>
> revoke ALL on stat,users from PUBLIC;
> grant INSERT, SELECT on stat to statist;
> grant select on users to statist;
> grant ALL on stat to basemaster;
> insert into users values('niva');
> insert into stat values ('niva',abstime('now'),timespan(0),8607272,1829436);
> ---------------------
> After that I do(make) connection as the user statis and execute cmd:
> -----------------------
> insert into stat
> values('niva',abstime('now'),timespan(abstime('now')-(select max(timewrite)
> from stat)),50,50);";
> --------------------------
> server say:Access deny on users...
>
> After I change the rights on:
>
> grant select,update on users to statist;
>
> ,the query exec successfully
>
>
> Alexei E. Korneyev
> aek(at)tsinet(dot)ru
>

In response to

  • bugs at 2000-08-31 19:46:03 from Alexei E. Korneyev

Browse pgsql-bugs by date

  From Date Subject
Next Message Stephan Szabo 2000-09-06 16:40:56 Re: Possible bug in referential integrity system
Previous Message Piers Scannell 2000-09-06 15:21:54 RE: Possible bug in referential integrity system