Fix column's statistics errors

This commit is contained in:
2026-05-22 09:41:08 -04:00
parent 82c8a6bf84
commit 59aa235f3d
4 changed files with 16 additions and 5 deletions
+3
View File
@@ -19,6 +19,9 @@ class MSSQLDriver(BaseDriver):
super().__init__(config)
self.db_type = "mssql"
def quote_identifier(self, name: str) -> str:
return f"[{name}]"
def _conn_str(self) -> str:
host = self.config.get("host", "localhost")
port = int(self.config.get("port", 1433))