Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cardinal_pythonlib/sqlalchemy/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
"DECIMAL": Numeric,
"SMALLINT": SmallInteger,
"STRING": Text,
"VARCHAR": String,
}


Expand Down
2 changes: 1 addition & 1 deletion cardinal_pythonlib/version_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@

"""

VERSION_STRING = "2.0.4"
VERSION_STRING = "2.0.5"
# Use semantic versioning: https://semver.org/
4 changes: 4 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading