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
Is your feature request related to a problem? Please describe.
I would like to be able to persist my DBT column descriptions as column comments, but for column with special characters the connector fails with persist_docs.columns = true in the project configuration.
Interestingly, the table name is automatically escaped.
Describe the solution you'd like
I would like to be able to auto-populate column comments using the dbt persist_docs feature.
Describe alternatives you've considered
I've tried the following:
Adding quote: true to the column specifications (no effect)
Adding double quotes to escape the column name manually (no effect)
Adding backticks to escape the column name (causes error)
I could also potentially write my own comment generation as a post-hook but it would be a lot of work to duplicate all the descriptions and keep them up to date.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I would like to be able to persist my DBT column descriptions as column comments, but for column with special characters the connector fails with persist_docs.columns = true in the project configuration.
For example, this model:
creates this query
Interestingly, the table name is automatically escaped.
Describe the solution you'd like
I would like to be able to auto-populate column comments using the dbt persist_docs feature.
Describe alternatives you've considered
I've tried the following:
quote: true
to the column specifications (no effect)I could also potentially write my own comment generation as a post-hook but it would be a lot of work to duplicate all the descriptions and keep them up to date.
The text was updated successfully, but these errors were encountered: