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
+4
View File
@@ -87,6 +87,10 @@ class BaseDriver(ABC):
"""Returns list of database name strings."""
pass
def quote_identifier(self, name: str) -> str:
"""Wrap an identifier in the DB-appropriate quote characters."""
return f'"{name}"'
@abstractmethod
def get_tables(self, database: str) -> list:
"""Returns list of TableInfo for the given database."""