-
Notifications
You must be signed in to change notification settings - Fork 47
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
Data validation Phase 1 #1239
Data validation Phase 1 #1239
Conversation
8b0c1f8
to
c8f0fd2
Compare
Codecov ReportBase: 92.90% // Head: 93.54% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #1239 +/- ##
==========================================
+ Coverage 92.90% 93.54% +0.63%
==========================================
Files 61 82 +21
Lines 3215 3981 +766
Branches 382 400 +18
==========================================
+ Hits 2987 3724 +737
- Misses 151 176 +25
- Partials 77 81 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
3770308
to
db9b8a9
Compare
python-sdk/src/astro/sql/operators/data_validations/SQLCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/SQLCheckOperator.py
Outdated
Show resolved
Hide resolved
29d149a
to
2009843
Compare
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
python-sdk/src/astro/sql/operators/data_validations/ColumnCheckOperator.py
Outdated
Show resolved
Hide resolved
…mnCheckOperator.py
# Description ## What is the current behavior? Because of below issue: ``` airflow.exceptions.AirflowException: You are trying to use `common-sql` with GoogleBaseHook, but its provider does not support it. Please upgrade the provider to a version that supports `common-sql`. The hook class should be a subclass of `airflow.providers.common.sql.hooks.sql.DbApiHook`. Got GoogleBaseHook Hook with class hierarchy: [<class 'airflow.providers.google.common.hooks.base_google.GoogleBaseHook'>, <class 'airflow.hooks.base.BaseHook'>, <class 'airflow.utils.log.logging_mixin.LoggingMixin'>, <class 'object'>] ``` We are using a work around and using Bigquey Hook
c8ee4b4
to
1220883
Compare
…kOperator.py Co-authored-by: Felix Uellendall <feluelle@users.noreply.github.com>
…kOperator.py Co-authored-by: Felix Uellendall <feluelle@users.noreply.github.com>
…kOperator.py Co-authored-by: Felix Uellendall <feluelle@users.noreply.github.com>
…kOperator.py Co-authored-by: Felix Uellendall <feluelle@users.noreply.github.com>
Description
What is the current behavior?
Implements Phase 1 of the data validation story:
Introduces operator
ColumnCheckOperator
to validate Column on Dataframe and Astro Table