-
Notifications
You must be signed in to change notification settings - Fork 227
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
Enhancement/refactor python submission #452
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 dbt-spark contributing guide. |
dbt/adapters/spark/__init__.py
Outdated
@@ -5,7 +5,7 @@ | |||
from dbt.adapters.spark.impl import SparkAdapter | |||
|
|||
from dbt.adapters.base import AdapterPlugin | |||
from dbt.include import spark | |||
from dbt.include import spark # type: ignore |
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.
Not sure why mypy started to complain things out of no where, just added ignore for now as it has been like this for a long time
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.
after going over it, From what I can tell it all looks okay, to double check myself we are pulling more of the like parts into core and just making adapter specific changes for python submission?
@McKnight-42 Yes, I pulled that function into core in this PR |
Resolves #182 ### Description Follows enhancement/refactor python submission in dbt-labs/dbt-spark#452 and dbt-labs/dbt-core#5822.
Description
dbt-labs/dbt-bigquery#248 made it obvious that we should extract more common functions into core.
Checklist
changie new
to create a changelog entry