diff --git a/cardinal_pythonlib/sqlalchemy/schema.py b/cardinal_pythonlib/sqlalchemy/schema.py index 6d0201e..2b85311 100644 --- a/cardinal_pythonlib/sqlalchemy/schema.py +++ b/cardinal_pythonlib/sqlalchemy/schema.py @@ -138,6 +138,7 @@ "DECIMAL": Numeric, "SMALLINT": SmallInteger, "STRING": Text, + "VARCHAR": String, } diff --git a/cardinal_pythonlib/version_string.py b/cardinal_pythonlib/version_string.py index 1fd1ef7..696be3e 100644 --- a/cardinal_pythonlib/version_string.py +++ b/cardinal_pythonlib/version_string.py @@ -31,5 +31,5 @@ """ -VERSION_STRING = "2.0.4" +VERSION_STRING = "2.0.5" # Use semantic versioning: https://semver.org/ diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a5b9952..deb6c93 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -885,3 +885,7 @@ Quick links: - Fix :func:`cardinal_pythonlib.sqlalchemy.schema.execute_ddl` so that it always commits. Not all dialects commit automatically. + +**2.0.5 (2025-04-07)** + +- Add VARCHAR to valid Databricks types.