Skip to content

Commit 387b994

Browse files
Merge pull request #35 from RudolfCardinal/add-databricks-varchar-type
Add VARCHAR to Databricks types
2 parents 3ccc326 + ce6b319 commit 387b994

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

cardinal_pythonlib/sqlalchemy/schema.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
"DECIMAL": Numeric,
139139
"SMALLINT": SmallInteger,
140140
"STRING": Text,
141+
"VARCHAR": String,
141142
}
142143

143144

cardinal_pythonlib/version_string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
3232
"""
3333

34-
VERSION_STRING = "2.0.4"
34+
VERSION_STRING = "2.0.5"
3535
# Use semantic versioning: https://semver.org/

docs/source/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -885,3 +885,7 @@ Quick links:
885885

886886
- Fix :func:`cardinal_pythonlib.sqlalchemy.schema.execute_ddl` so that it always
887887
commits. Not all dialects commit automatically.
888+
889+
**2.0.5 (2025-04-07)**
890+
891+
- Add VARCHAR to valid Databricks types.

0 commit comments

Comments
 (0)