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
If a schema.yml description contains a doc() call, then that docs block is rendered. If it contains jinja that does not contain a doc block, then it isn't rendered at all in the manifest!
Steps To Reproduce
schema.yml
models:
- name: debugdescription: "{{ 1 + 1 }}"
Resulting manifest:
..."description": "{{ 1 + 1 }}",
...
What sort of quantum wizardy is this?
Expected behavior
In the example above, I'd expect:
models:
- name: debug
description: "{{ 1 + 1 }}"
to render out to a description of "2".
Screenshots and log output
how
The output of dbt --version:
dev/barbara-gittings
The text was updated successfully, but these errors were encountered:
Describe the bug
If a schema.yml description contains a
doc()
call, then that docs block is rendered. If it contains jinja that does not contain a doc block, then it isn't rendered at all in the manifest!Steps To Reproduce
schema.yml
Resulting manifest:
What sort of quantum wizardy is this?
Expected behavior
In the example above, I'd expect:
to render out to a
description
of"2"
.Screenshots and log output
how
The output of
dbt --version
:The text was updated successfully, but these errors were encountered: