BigQuery SQL supports [triple-quoted strings](https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical#literals) wrapped in `'''`. When running `dataform format` against a SQLX file containing a triple-quoted string, the quotes are formatted like the below example: (original) ```sql ''' select 1 ''' ``` (after formatting) ```sql '' ' select 1 ' '' ``` BigQuery fails when executing the query after this formatting change.