From: | "Olleg Samoylov" <olleg(at)mipt(dot)ru> |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | BUG #1610: rewrite rule and sequence |
Date: | 2005-04-21 12:19:44 |
Message-ID: | 20050421121944.15E03F0B53@svr2.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-docs |
The following bug has been logged online:
Bug reference: 1610
Logged by: Olleg Samoylov
Email address: olleg(at)mipt(dot)ru
PostgreSQL version: 7.4.7
Operating system: Linux debian-amd64
Description: rewrite rule and sequence
Details:
Rule on view can't insert in table with "serial" field under not owner. Need
grant privilege on sequence explicitly.
How reproduce:
olleg=> create table f (pk serial, f integer);
NOTICE: CREATE TABLE will create implicit sequence "f_pk_seq" for "serial"
column "f.pk"
CREATE TABLE
olleg=> create view v as select * from t;
ERROR: relation "t" does not exist
olleg=> drop table f;
DROP TABLE
olleg=> create table t (pk serial, f integer);
NOTICE: CREATE TABLE will create implicit sequence "t_pk_seq" for "serial"
column "t.pk"
CREATE TABLE
olleg=> create view v as select * from t;
CREATE VIEW
olleg=> create rule r as on insert to v do instead insert into t(f) values
(new.f);
CREATE RULE
olleg=> grant select,insert on t to bill;
GRANT
olleg=> \c - bill
You are now connected as new user "bill".
olleg=> insert into t (f) values (0);
ERROR: permission denied for sequence t_pk_seq
From | Date | Subject | |
---|---|---|---|
Next Message | Ingolf Knopf | 2005-04-21 12:32:16 | BUG #1611: reading a date-field by "ResultSet.getTimestamp()" method analized dayligth flag |
Previous Message | Oliver Siegmar | 2005-04-21 07:10:02 | Re: BUG #1609: Bug in interval datatype for 64 Bit timestamps |
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Huxton | 2005-04-21 15:57:51 | Re: BUG #1610: rewrite rule and sequence |
Previous Message | Euler Taveira de Oliveira | 2005-04-13 17:09:47 | Re: Translate Postgresql FAQ into Chinese |