You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
A materialized view has a rule just like a view and a heap andother physical properties like a table. The rule is only used topopulate the table, references in queries refer to thematerialized data.This is a minimal implementation, but should still be useful inmany cases. Currently data is only populated "on demand" by theCREATE MATERIALIZED VIEW and REFRESH MATERIALIZED VIEW statements.It is expected that future releases will add incremental updateswith various timings, and that a more refined concept of definingwhat is "fresh" data will be developed. At some point it may evenbe possible to have queries use a materialized in place ofreferences to underlying tables, but that requires the otherabove-mentioned features to be working first.Much of the documentation work by Robert Haas.Review by Noah Misch, Thom Brown, Robert Haas, Marko TiikkajaSecurity review by KaiGai Kohei, with a decision on how best toimplement sepgsql still pending.