Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 1fb79da

Browse files
committed
Fix for databricks; clickhouse
1 parent b09eca3 commit 1fb79da

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

data_diff/databases/clickhouse.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,7 @@ def normalize_number(self, value: str, coltype: FractionalType) -> str:
150150
)
151151
"""
152152
return value
153+
154+
@property
155+
def is_autocommit(self) -> bool:
156+
return True

data_diff/databases/databricks.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,3 +151,7 @@ def parse_table_name(self, name: str) -> DbPath:
151151

152152
def close(self):
153153
self._conn.close()
154+
155+
@property
156+
def is_autocommit(self) -> bool:
157+
return True

0 commit comments

Comments
 (0)