Skip to content

Commit 4ac5e23

Browse files
authored
Merge pull request #95 from posit-dev/fix-compat-with-mssql
Fix: add preliminary support for MS SQL Server
2 parents 13f86f4 + 6e385f9 commit 4ac5e23

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

pointblank/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"col_vals_not_null",
9393
]
9494

95-
IBIS_BACKENDS = ["duckdb", "mysql", "postgres", "sqlite", "parquet", "memtable"]
95+
IBIS_BACKENDS = ["duckdb", "memtable", "mssql", "mysql", "parquet", "postgres", "sqlite"]
9696

9797
VALIDATION_REPORT_FIELDS = [
9898
"i",

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ pl = ["polars>=1.17.1"]
4949
generate = ["chatlas>=0.3.0", "anthropic[bedrock]>=0.45.2", "openai>=1.63.0"]
5050
duckdb = ["ibis-framework[duckdb]>=9.5.0"]
5151
mysql = ["ibis-framework[mysql]>=9.5.0"]
52+
mssql = ["ibis-framework[mssql]>=9.5.0"]
5253
postgres = ["ibis-framework[postgres]>=9.5.0"]
5354
sqlite = ["ibis-framework[sqlite]>=9.5.0"]
5455
docs = [

0 commit comments

Comments
 (0)