File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 5555 {% set default_description = elementary .get_default_description (test_original_name, test_namespace) %}
5656
5757 {% set config_meta_dict = elementary .safe_get_with_default (config_dict, ' meta' , {}) %}
58- {% set meta_dict = {} %}
59- {% if default_description %}
60- {% set meta_dict = {' description' : default_description} %}
61- {% endif %}
62- {% do meta_dict .update (elementary .safe_get_with_default (node_dict, ' meta' , {})) %}
58+ {% set meta_dict = elementary .safe_get_with_default (node_dict, ' meta' , {}) %}
6359 {% do meta_dict .update (config_meta_dict) %}
6460
6561 {% set description = none %}
6662 {% if dbt_version >= ' 1.9.0' and node_dict .get (' description' ) %}
6763 {% set description = node_dict .get (' description' ) %}
6864 {% elif meta_dict .get (' description' ) %}
6965 {% set description = meta_dict .pop (' description' ) %}
66+ {% elif default_description %}
67+ {% set description = default_description %}
7068 {% endif %}
7169
7270 {% set config_tags = elementary .safe_get_with_default (config_dict, ' tags' , []) %}
You can’t perform that action at this time.
0 commit comments