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

Commit ca0ec8f

Browse files
authored
Merge branch 'master' into send_event_json_errors
2 parents e841649 + e305480 commit ca0ec8f

File tree

3 files changed

+7
-34
lines changed

3 files changed

+7
-34
lines changed

Diff for: README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pip install data-diff 'data-diff[postgresql,snowflake]' -U
6363

6464
Additionally, you can install all open source supported database adapters as follows.
6565
```
66-
pip install data-diff 'data-diff[all-oss-supported-dbs]' -U
66+
pip install data-diff 'data-diff[all-dbs]' -U
6767
```
6868

6969
2. Run `data-diff` with connection URIs
@@ -156,6 +156,7 @@ Check out [documentation](https://docs.datafold.com/reference/open_source/cli) f
156156
| Redshift | 🟢 | `redshift://<username>:<password>@<hostname>:5439/<database>` |
157157
| DuckDB | 🟢 | `duckdb://<filepath>` |
158158
| MotherDuck | 🟢 | `duckdb://<filepath>` |
159+
| Microsoft SQL Server | 🟢 | `mssql://<user>:<password>@<host>/<database>/<schema>` |
159160
| Oracle | 🟡 | `oracle://<username>:<password>@<hostname>/servive_or_sid` |
160161
| Presto | 🟡 | `presto://<username>:<password>@<hostname>:8080/<database>` |
161162
| Databricks | 🟡 | `databricks://<http_path>:<access_token>@<server_hostname>/<catalog>/<schema>` |

Diff for: poetry.lock

+2-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ redshift = ["psycopg2"]
7474
snowflake = ["snowflake-connector-python", "cryptography"]
7575
presto = ["presto-python-client"]
7676
oracle = ["oracledb"]
77-
mssql = ["pyodbc"] # natively supported in Datafold Cloud only
77+
mssql = ["pyodbc"]
7878
# databricks = ["databricks-sql-connector"]
7979
trino = ["trino"]
8080
clickhouse = ["clickhouse-driver"]
8181
vertica = ["vertica-python"]
8282
duckdb = ["duckdb"]
83-
all-oss-supported-dbs = [
83+
all-dbs = [
8484
"preql", "mysql-connector-python", "psycopg2", "snowflake-connector-python", "cryptography", "presto-python-client",
85-
"oracledb", "trino", "clickhouse-driver", "vertica-python", "duckdb"
85+
"oracledb", "pyodbc", "trino", "clickhouse-driver", "vertica-python", "duckdb"
8686
]
8787

8888
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)