-
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
compile inline query doesn't add node #7325
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. |
@stu-k Once your PR is merged I will update this to point to main |
@@ -1,10 +1,5 @@ | |||
import os | |||
from dbt.config.project import Project | |||
from dbt.contracts.results import RunningStatus, collect_timing_info |
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.
This whole file is removed on main. The diff will disappear once removed
@@ -40,6 +40,10 @@ def compile(self, manifest): | |||
|
|||
|
|||
class CompileTask(GraphRunnableTask): | |||
# We add a new inline node to the manifest during initialization |
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.
This is the only change.
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.
Will have to add a test for it.
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.