PostgreSQL - Common Table Expressions
Given the query:
What is the effect of
WITH cte AS MATERIALIZED (SELECT id FROM users WHERE active = true) SELECT * FROM cte WHERE id < 10;
What is the effect of
MATERIALIZED here?