mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
11 lines
181 B
SQL
11 lines
181 B
SQL
{% test is_empty(model) %}
|
|
|
|
{{ config (
|
|
severity = 'warn',
|
|
fail_calc = "n_records"
|
|
) }}
|
|
|
|
select count(*) as n_records
|
|
from {{ model }}
|
|
|
|
{% endtest %} |