Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for MATERIALIZED keyword formatting #708

Open
matthiasmast opened this issue Mar 10, 2023 · 0 comments
Open

Add support for MATERIALIZED keyword formatting #708

matthiasmast opened this issue Mar 10, 2023 · 0 comments

Comments

@matthiasmast
Copy link

A query without MATERIALIZED is formatted e.g. like this

WITH test_data AS
    (SELECT data1,
            data2,
            data3
     FROM test_table)
SELECT *
FROM test_data

after adding the MATERIALIZED keyword it is formatted like this

WITH test_data AS MATERIALIZED
    (SELECT data1, data2, data3
     FROM test_table)
SELECT *
FROM test_data

but it should be formatted like this

WITH test_data AS MATERIALIZED 
    (SELECT data1,
            data2,
            data3
     FROM test_table)
SELECT *
FROM test_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant