Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show Column test case result at the Column Level on the Lineage View #16244

Open
TeddyCr opened this issue May 13, 2024 · 0 comments
Open

Show Column test case result at the Column Level on the Lineage View #16244

TeddyCr opened this issue May 13, 2024 · 0 comments
Assignees
Labels
data quality enhancement New feature or request UI UI specific issues

Comments

@TeddyCr
Copy link
Contributor

TeddyCr commented May 13, 2024

We currently display column test results at the entity level on the lineage. These result should be shown at the column level (table ones can be display as currently displayed).

image

We have the entityLink available that would allow us to show the test this way

{
    "success": 3,
    "failed": 0,
    "aborted": 0,
    "queued": 0,
    "total": 3,
    "columnTestSummary": [
        {
            "success": 2,
            "failed": 0,
            "aborted": 0,
            "queued": 0,
            "total": 2,
            "entityLink": "<#E::table::redshift_dbt.dev.dbt_cli_e2e.stg_payments::columns::payment_id>"
        },
        {
            "success": 1,
            "failed": 0,
            "aborted": 0,
            "queued": 0,
            "total": 1,
            "entityLink": "<#E::table::redshift_dbt.dev.dbt_cli_e2e.stg_payments::columns::payment_method>"
        }
    ]
}

This will allow users to quickly navigate upstream when a column failures happens

@TeddyCr TeddyCr added enhancement New feature or request UI UI specific issues data quality labels May 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data quality enhancement New feature or request UI UI specific issues
Projects
Status: UI - Bugs & Minor Features
Development

No branches or pull requests

2 participants