**Input data** Which SQL and options did you provide as input? ```sql WITH a AS ( SELECT * FROM items ) (SELECT a.x FROM a) UNION (SELECT b.x FROM b); ``` **Expected Output** ```sql WITH a AS ( SELECT * FROM items ) ( SELECT a.x FROM a ) UNION ( SELECT b.x FROM b ); ``` **Actual Output** Parenthesized `SELECT a.x FROM a` query follows directly after the CTE (and has an extra indent) instead of starting on position 0 of the next line. ```sql WITH a AS ( SELECT * FROM items ) ( SELECT a.x FROM a ) UNION ( SELECT b.x FROM b ); ``` **Usage** - How are you calling / using the library? [Demo website](https://sql-formatter-org.github.io/sql-formatter/) - What SQL language(s) does this apply to? PostgreSQL - Which SQL Formatter version are you using? 14.0.0