shssoichiro / sqlformat-rs

SQL Formatter written in Rust
Apache License 2.0
89 stars 26 forks source link

[Q][Proposal] allow for interpolation #62

Open dkuku opened 1 week ago

dkuku commented 1 week ago

This is not in sql standard but some libraries are using {{ abc }} for interpolation currently this works like this:

SELECT
  {{abc}},
FROM
  table_name

becomes:

SELECT
  { { abc } },
FROM
  table_name

Would you accept handling this, maybe as an option ?