-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
compile inline query doesn't add node #7292
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the contributing guide. |
69fb6bf
to
47b915d
Compare
core/dbt/task/compile.py
Outdated
# it should be removed before the task is complete | ||
_inline_node_id = None | ||
|
||
# TODO remove when stu's PR about skip adapter cache is merged |
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.
As stated, this should be removed once Stu's work is done.
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.
Tracked in #6526
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.
core/dbt/task/compile.py
Outdated
# it should be removed before the task is complete | ||
_inline_node_id = None | ||
|
||
# TODO remove when stu's PR about skip adapter cache is merged |
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.
Tracked in #6526
|
||
return runner.safe_run(manifest) | ||
|
||
|
||
def parse_to_manifest(config): |
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.
If we implement #6547, we would be able to remove this method as well, right?
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.
Yep
47b915d
to
762a3f6
Compare
Closing due to git history looks odd, will reopen |
Related to #6358
When compile a inline node, we add one additional node to the manifest. That node should be removed when compile is done.