tconbeer / sqlfmt

sqlfmt formats your dbt SQL files so you don't have to
https://sqlfmt.com
Apache License 2.0
390 stars 16 forks source link

Preserve the space between `interval` and a following parenthesis #612

Closed tconbeer closed 1 month ago

tconbeer commented 1 month ago

Describe the bug interval is sort of a word operator, but is being parsed as a function.

To Reproduce select '2024-03-19' + interval (case when false then 1 else 0 end) day

Expected behavior no-op

Actual behavior select '2024-03-19' + interval(case when false then 1 else 0 end) day

Additional context What is the output of sqlfmt --version? 0.21.3

What is the output of pip list (or pipx list if you installed using pipx)?