Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small clarification in materialized views docs. #18431

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/src/main/sphinx/sql/create-materialized-view.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ The optional ``OR REPLACE`` clause causes the materialized view to be replaced
if it already exists rather than raising an error.

The optional ``IF NOT EXISTS`` clause causes the materialized view only to be
created or replaced if it does not exist yet.
created if it does not exist yet.

Note that ``OR REPLACE`` and ``IF NOT EXISTS`` are mutually exclusive clauses.

The optional ``GRACE PERIOD`` clause specifies how long the query materialization
is used for querying. If the time elapsed since last materialized view refresh
Expand Down