Similar to #217
To reproduce
Create this file:
models/my_autofix_model.sql
{{
config(
materialized='view',
my_custom_config_1='"database"."schema"."identifier"',
my_custom_config_2='"some_quoted_string"',
my_custom_config_3='some_unquoted_string',
)
}}
select 1 as id
Run this command:
I expected it to update the file to the following, but it did not:
{{ config(
materialized="view",
meta={'my_custom_config_1': '...', 'my_custom_config_2': '...', 'my_custom_config_3': 'some_unquoted_string'}
) }}
Instead, it said:
Error processing /models/my_autofix_model.sql: TemplateSyntaxError: expected token
',', got 'database'