Skip to content

Commit a28b39b

Browse files
sdebruynclaude
andcommitted
Fix missed bare boolean in fct_test_directories
is_primary_test_relationship was still used as a bare boolean in WHERE. Co-Authored-By: Claude Opus 4.6 <[email protected]>
1 parent 95fffde commit a28b39b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

models/marts/structure/fct_test_directories.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ models_per_test as (
2222
direct_parent_id as parent_model_id
2323
from relationships
2424
where resource_type = 'test'
25-
and is_primary_test_relationship
25+
and is_primary_test_relationship = cast(1 as {{ dbt.type_boolean() }})
2626

2727
),
2828

0 commit comments

Comments
 (0)