From: | Kevin Grittner <kgrittn(at)ymail(dot)com> |
---|---|
To: | Andres Freund <andres(at)2ndquadrant(dot)com> |
Cc: | Greg Stark <stark(at)mit(dot)edu>, Peter Eisentraut <peter_e(at)gmx(dot)net>, Noah Misch <noah(at)leadboat(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Marko Tiikkaja <pgmail(at)joh(dot)to>, Pgsql Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Materialized views WIP patch |
Date: | 2013-02-21 15:35:58 |
Message-ID: | 1361460958.27538.YahooMailNeo@web162906.mail.bf1.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
Andres Freund <andres(at)2ndquadrant(dot)com> wrote:
> I assume that at some point matviews will get (auto-)updateable,
> just as normal views recently got.
I'm dubious about that. Every use case I've seen for MVs involves
aggregation, although they are a generalized feature, so that won't
always be true. But if you have a view like:
CREATE MATERIALIZED VIEW tm AS
SELECT t.type,
sum(t.amt) AS totamt
FROM t
GROUP BY t.type;
... I don't see how that can be updateable. If I add 5 to totamt
for some row, what do you do? I expect that 99% of MVs will be
updated asynchronously from changes to the underlying data -- what
do you do if someone updates a row that no longer exists in the
underlying data. This are just seems fraught with peril and out of
sync with the usual uses of MVs.
> What about DISABLE? DISCARD or DEALLOCATE would also be nice but
> it seems hard to fit that into existing syntax.
Thanks for the suggestions.
--
Kevin Grittner
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2013-02-21 15:42:00 | Re: Materialized views WIP patch |
Previous Message | Kevin Grittner | 2013-02-21 15:26:06 | Re: Materialized views WIP patch |
From | Date | Subject | |
---|---|---|---|
Next Message | Albe Laurenz | 2013-02-21 15:36:02 | Re: FDW for PostgreSQL |
Previous Message | Tom Lane | 2013-02-21 15:30:52 | Re: FDW for PostgreSQL |