docs: cover TTL on materialized views in the TTL concept page#482
Open
PedroHenrique0713 wants to merge 1 commit into
Open
docs: cover TTL on materialized views in the TTL concept page#482PedroHenrique0713 wants to merge 1 commit into
PedroHenrique0713 wants to merge 1 commit into
Conversation
The TTL concept page only documented TTL for tables under "Setting TTL", while materialized views were mentioned only in the Enterprise caution. Add a subsection showing TTL at view creation and on an existing view, linking the canonical CREATE MATERIALIZED VIEW and ALTER MATERIALIZED VIEW SET TTL references. Closes questdb#275
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The TTL concept page documents
TTLonly for tables under Setting TTL (at table creation and on existing tables). Materialized views are mentioned only in the Enterprise caution at the top, so a reader looking for how to apply TTL to a view on Open Source has no path.This adds an On materialized views subsection under Setting TTL, mirroring the existing table subsections, covering TTL both at view creation and on an existing view, and linking the canonical SQL references.
Why
Materialized views fully support TTL:
CREATE MATERIALIZED VIEW ... PARTITION BY DAY TTL 7 DAYS— see create-mat-view.mdALTER MATERIALIZED VIEW ... SET TTL 7 DAYS— see alter-mat-view-set-ttl.mdThe examples reuse the exact syntax already documented in those pages; no new behavior is introduced.
Closes #275