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
WITH [ NO ] DATA
This clause specifies whether or not the materialized view should be populated at creation time. If not, the materialized view will be flagged as unscannable and cannot be queried until REFRESH MATERIALIZED VIEW is used.
The text was updated successfully, but these errors were encountered:
Please make it possible to create materialized view without data by using
WITH NO DATA
parameter (optional).https://www.postgresql.org/docs/9.5/sql-creatematerializedview.html
The text was updated successfully, but these errors were encountered: