Re: Example on difference between CREATE MATERIALIZED VIEW and standard VIEW has typo

2025-08-25 Thread Wim Bertels
Hello, that is just the point: cf " are that the materialized view cannot subsequently be directly updated and that the query used to create the materialized view is stored in exactly the same way that a view's query is stored, so that fresh data can be generated for the materialized view with: "

Re: Example on difference between CREATE MATERIALIZED VIEW and standard VIEW has typo

2025-08-23 Thread Erik Forsberg
On Fri, Aug 22, 2025, at 23:40, David G. Johnston wrote: > On Fri, Aug 22, 2025 at 2:23 PM PG Doc comments form > wrote: >> Unless I'm completely mistaken, the second code example on >> https://www.postgresql.org/docs/current/rules-materializedviews.html, i.e >> this: >> >> CREATE TABLE mymatvie

Re: Example on difference between CREATE MATERIALIZED VIEW and standard VIEW has typo

2025-08-22 Thread David G. Johnston
On Fri, Aug 22, 2025 at 2:23 PM PG Doc comments form wrote: > Unless I'm completely mistaken, the second code example on > https://www.postgresql.org/docs/current/rules-materializedviews.html, i.e > this: > > CREATE TABLE mymatview AS SELECT * FROM mytab; > > Should instead by > > CREATE VIEW mym