DBT Test: Unique S3 Files Latest Key
DBT test name: unique_s3_files_latest_key
DBT details
-
Kind:
generic(unique) -
Column under test:
key -
Test file: trase/data_pipeline/models/s3_monitoring/_schema_s3_monitoring.yml
Description
No description
Details
{{ test_unique(**_dbt_generic_test_kwargs) }}
select
key as unique_field,
count(*) as n_records
from "trase_ducklake"."main_s3_monitoring"."s3_files_latest"
where key is not null
group by key
having count(*) > 1