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
a dbt docs generate runs but when I got to view docs I don't see docs for either referenced under the TESTS column in the Columns table in the browser.
This code in the underlying javascript <!-- ngIf: has_test(column, 'N') --> doesn't seem to be able to find the column when quote: true is applied. That source is here..
Things I tried to work around:
Removing quote works for docs, but then breaks the test since I need to preserve lettercase and/or the space here.
Adding quotes to name: like "'My Space'" allows the test to work, but results in a double entry in docs.
The text was updated successfully, but these errors were encountered:
I looked into manifest.json and found that column_names of test resources have quotes, but column_names of models does not. As a result, this code return false and tests column becomes empty.
This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please remove the stale label or comment on the issue, or it will be closed in 7 days.
* (#201) Fix for column tests not rendering on quoted columns
* Add support for bigquery quotes
* use backticks for databricks and spark; add compat module and test
Given model
docs_test.sql
with:and
docs_test.yml
with:a
dbt docs generate
runs but when I got to view docs I don't see docs for either referenced under the TESTS column in the Columns table in the browser.This code in the underlying javascript
<!-- ngIf: has_test(column, 'N') -->
doesn't seem to be able to find the column when quote: true is applied. That source is here..Things I tried to work around:
"'My Space'"
allows the test to work, but results in a double entry in docs.The text was updated successfully, but these errors were encountered: