Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 86cf6e6

Browse files
authored
support MicrobatchConcurrency capability (#1259)
1 parent 0b24a5a commit 86cf6e6

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Features
2+
body: Support MicrobatchConcurrency
3+
time: 2024-12-02T09:51:36.606097-05:00
4+
custom:
5+
Author: michelleark
6+
Issue: "1260"

dbt/adapters/snowflake/impl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ class SnowflakeAdapter(SQLAdapter):
7777
Capability.TableLastModifiedMetadata: CapabilitySupport(support=Support.Full),
7878
Capability.TableLastModifiedMetadataBatch: CapabilitySupport(support=Support.Full),
7979
Capability.GetCatalogForSingleRelation: CapabilitySupport(support=Support.Full),
80+
Capability.MicrobatchConcurrency: CapabilitySupport(support=Support.Full),
8081
}
8182
)
8283

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def _plugin_version() -> str:
5858
include_package_data=True,
5959
install_requires=[
6060
"dbt-common>=1.10,<2.0",
61-
"dbt-adapters>=1.7,<2.0",
61+
"dbt-adapters>=1.10.4,<2.0",
6262
"snowflake-connector-python[secure-local-storage]~=3.0",
6363
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
6464
"dbt-core>=1.8.0",

0 commit comments

Comments
 (0)