COPY and views - Mailing list pgsql-hackers

From Neil Conway
Subject COPY and views
Date
Msg-id 20020526023201.278e997d.nconway@klamath.dyndns.org
Whole thread Raw
Responses Re: COPY and views  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Is there a reason for the following behavior?

nconway=# create table a (col1 int);
CREATE TABLE
nconway=# insert into a default values;
INSERT 1883513 1
nconway=# copy a to '/tmp/output';
COPY
nconway=# create view myview as select * from a;
CREATE VIEW
nconway=# copy myview to '/tmp/output';
ERROR:  You cannot copy view myview

I can understand not allowing COPY FROM to target a view
(or at least, a view without an insertion rule defined) --
but is there a similar reason for disallowing copying data
out of a view?

Cheers,

Neil

-- 
Neil Conway <neilconway@rogers.com>
PGP Key ID: DB3C29FC


pgsql-hackers by date:

Previous
From: Ian Barwick
Date:
Subject: Q: unexpected result from SRF in SQL
Next
From: Teodor Sigaev
Date:
Subject: Re: strange update problem with 7.2.1