Re: Adding a column to a VIEW which has dependent objects. - Mailing list pgsql-sql

From Tom Lane
Subject Re: Adding a column to a VIEW which has dependent objects.
Date
Msg-id 9810.1073753325@sss.pgh.pa.us
Whole thread Raw
In response to Adding a column to a VIEW which has dependent objects.  (Rajesh Kumar Mallah <mallah@trade-india.com>)
Responses Re: Adding a column to a VIEW which has dependent objects.
List pgsql-sql
Rajesh Kumar Mallah <mallah@trade-india.com> writes:
> How do people extend a parent view which has
> lot of dependent views?
> The parent view cannot be dropped because that will
> require recreating a dozen of dependent views.

You're out of luck, you'll have to drop and remake them all.
In future we could think about some kind of ALTER VIEW ADD COLUMN
operation, but it ain't there now.

(I suppose if you were really desperate you could think about manually
hacking the system catalogs, but this would be pretty risky on a
production database.)

> Also is there an easy way of dumping the definitions
> of all the dependent views of a given object.

You can chase the links in pg_depend to see what the dependent objects
are, but extracting their definitions would be a tad harder ...
        regards, tom lane


pgsql-sql by date:

Previous
From: Rajesh Kumar Mallah
Date:
Subject: Adding a column to a VIEW which has dependent objects.
Next
From: Jeff Eckermann
Date:
Subject: Re: data loading