mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
Co-authored-by: Grace Goheen <53586774+graciegoheen@users.noreply.github.com> Co-authored-by: Benoit Perigaud <8754100+b-per@users.noreply.github.com>
26 lines
1.2 KiB
YAML
26 lines
1.2 KiB
YAML
version: 2
|
|
|
|
seeds:
|
|
- name: dbt_project_evaluator_exceptions
|
|
description: List of exceptions not to be reported.
|
|
|
|
config:
|
|
column_types:
|
|
fct_name: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake', 'trino', 'greenplum'] else 'String' if target.type in ['clickhouse'] else 'string' }}"
|
|
column_name: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake', 'trino', 'greenplum'] else 'String' if target.type in ['clickhouse'] else 'string' }}"
|
|
id_to_exclude: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake', 'trino', 'greenplum'] else 'String' if target.type in ['clickhouse'] else 'string' }}"
|
|
comment: "{{ 'varchar' if target.type in ['redshift', 'postgres', 'snowflake', 'trino', 'greenplum'] else 'String' if target.type in ['clickhouse'] else 'string' }}"
|
|
|
|
columns:
|
|
- name: fct_name
|
|
description: Name of the fact table to define exceptions.
|
|
|
|
- name: column_name
|
|
description: Column name from fct_name to define exceptions.
|
|
|
|
- name: id_to_exclude
|
|
description: Values (or like pattern) to exclude for column_name.
|
|
|
|
- name: comment
|
|
description: Field to document why a given exception is legitimate.
|