A blank line is expected after CTE definition. In queries with many CTEs this hinders readability.
There is no blank line after the CTE.
WITH plop AS (
SELECT * FROM foo
)
SELECT a FROM plop
Add a blank line.
WITH plop AS (
SELECT * FROM foo
)
SELECT a FROM plop