Skip to content

Commit ba690aa

Browse files
authored
is_dbt_fusion: check that it's exactly 2 (#870)
1 parent bd63456 commit ba690aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/edr/system/system_utils/is_dbt_fusion.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% macro is_dbt_fusion() %}
2-
{% if dbt_version.split(".")[0] | int > 1 %}
2+
{% if dbt_version.split(".")[0] | int == 2 %}
33
{% do return(true) %}
44
{% endif %}
55

0 commit comments

Comments
 (0)