You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another maybe linked error ?
Executed with dataform cli version : 3.0.2
Example: definitions/test.sqlx
config { type: "view"}
WITH int_table AS (
SELECT id
FROM`my_dataset.my_table`) -- testSELECT id
FROM int_table
What we get
When running dataform format --actions="definitions/test.sqlx", an error is returned : Errors encountered during formatting: definitions/test.sqlx: Formatter unable to determine final formatted form.
While we expect:
config {
type: "view"
}
WITH
int_table AS (
SELECT
id
FROM`my_dataset.my_table`) -- testSELECT
id
FROM
int_table
is formatted as
expected:
dataform --version
returns2.9.0
The text was updated successfully, but these errors were encountered: