Insert into view - Mailing list pgsql-hackers

From Theo Kramer
Subject Insert into view
Date
Msg-id 3843A612.FBAE3F1C@flame.co.za
Whole thread Raw
List pgsql-hackers
Any thoughts on the following

------------------------------ testview.sql
-------------------------------------
drop table testhead; /* If it exists */
drop table testline; /* If it exists */
drop view testview; /* If it exists */

create table testhead ( part text
);

create table testline ( part text, colour text, adate datetime default 'now'
);

create view testview as select testhead.part, testline.colour, testline.adate from testhead, testline where
testhead.part= testline.part;
 

insert into testview values  ('pen', 'green');
insert into testview values  ('pen', 'blue');
insert into testview values  ('pen', 'black');

select * from testview;

-----------------------------------------------------------------------------------

The inserts report no errors, and when looking into $PGDATA/base/mydb/testview
with a hex editor I can see the values inserted. 

The select on view returns nothing... 

Should the insert not fail seeing that views are read only ?

-- 
--------
Regards
Theo


pgsql-hackers by date:

Previous
From: Hannu Krosing
Date:
Subject: Re: [HACKERS] sort on huge table
Next
From: Oleg Bartunov
Date:
Subject: Re: [HACKERS] union and LIMIT problem