v.18.12Improvement
ALTER DELETE Queries for Materialized Views
ALTER DELETE queries work for materialized views.Why it matters
This feature enables users to performALTER DELETE operations directly on materialized views, allowing for more flexible and granular data manipulation. Prior to this, such operations were limited or unsupported, making it harder to manage data within materialized views. This enhancement improves data maintenance and cleanup capabilities.How to use it
Use theALTER DELETE FROM <materialized_view> WHERE <condition> syntax to delete rows from a materialized view that meet the specified condition.