-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
add a no-op runner for saved_query #8937
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #8937 +/- ##
==========================================
+ Coverage 86.36% 86.45% +0.09%
==========================================
Files 177 177
Lines 26385 26439 +54
==========================================
+ Hits 22787 22859 +72
+ Misses 3598 3580 -18
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly LGTM, couple nits and another test and should be good to go.
from dbt.events.base_types import EventLevel | ||
|
||
|
||
class SavedQueryRunner(BaseRunner): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this class go in its own file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
I opted to not pull the runner out as changing it for all runners would be a very large change. @peterallenwebb |
(cherry picked from commit 211392c)
Opened a new issue in dbt-labs/docs.getdbt.com: dbt-labs/docs.getdbt.com#4383 |
(cherry picked from commit 211392c) Co-authored-by: Chenyu Li <[email protected]>
resolves #8893
Problem
Solution
Checklist