Skip to content

Commit

Permalink
support MicrobatchConcurrency capability (#1259)
Browse files Browse the repository at this point in the history
(cherry picked from commit 86cf6e6)
  • Loading branch information
MichelleArk authored and github-actions[bot] committed Dec 5, 2024
1 parent d9bfc4d commit fca4c59
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/unreleased/Features-20241202-095136.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Features
body: Support MicrobatchConcurrency
time: 2024-12-02T09:51:36.606097-05:00
custom:
Author: michelleark
Issue: "1260"
1 change: 1 addition & 0 deletions dbt/adapters/snowflake/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ class SnowflakeAdapter(SQLAdapter):
Capability.TableLastModifiedMetadata: CapabilitySupport(support=Support.Full),
Capability.TableLastModifiedMetadataBatch: CapabilitySupport(support=Support.Full),
Capability.GetCatalogForSingleRelation: CapabilitySupport(support=Support.Full),
Capability.MicrobatchConcurrency: CapabilitySupport(support=Support.Full),
}
)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _plugin_version() -> str:
include_package_data=True,
install_requires=[
"dbt-common>=1.10,<2.0",
"dbt-adapters>=1.7,<2.0",
"dbt-adapters>=1.10.4,<2.0",
"snowflake-connector-python[secure-local-storage]~=3.0",
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
"dbt-core>=1.8.0",
Expand Down

0 comments on commit fca4c59

Please sign in to comment.